pythonPackages.update-dotdee: init at 5.0

This commit is contained in:
eyjhbb@gmail.com 2019-07-23 16:56:25 +02:00
parent 8238ddfbf8
commit b0b81b0c18
3 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchFromGitHub, executor, naturalsort }:
buildPythonPackage rec {
pname = "update-dotdee";
version = "5.0";
src = fetchFromGitHub {
owner = "xolox";
repo = "python-update-dotdee";
rev = version;
sha256 = "1h3m593nwzx6vwa24k0wizb7la49yhqxwn73ipclxgxxi4dfdj01";
};
propagatedBuildInputs = [ executor naturalsort ];
meta = with lib; {
description = "Generic modularized configuration file manager";
homepage = https://github.com/xolox/python-update-dotdee;
license = licenses.mit;
maintainers = with maintainers; [ eyjhb ];
};
}

View File

@ -5090,6 +5090,8 @@ in
oppai-ng = callPackage ../tools/misc/oppai-ng { };
update-dotdee = with python3Packages; toPythonApplication update-dotdee;
update-resolv-conf = callPackage ../tools/networking/openvpn/update-resolv-conf.nix { };
opae = callPackage ../development/libraries/opae { };

View File

@ -4807,6 +4807,8 @@ in {
update-copyright = callPackage ../development/python-modules/update-copyright {};
update-dotdee = callPackage ../development/python-modules/update-dotdee { };
uritemplate = callPackage ../development/python-modules/uritemplate { };
uproot = callPackage ../development/python-modules/uproot {};