pythonPackages.update-dotdee: init at 5.0
This commit is contained in:
parent
8238ddfbf8
commit
b0b81b0c18
3 changed files with 26 additions and 0 deletions
22
pkgs/development/python-modules/update-dotdee/default.nix
Normal file
22
pkgs/development/python-modules/update-dotdee/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue