Merge pull request #104761 from kfollesdal/init-pycalver
This commit is contained in:
commit
4c0b3da940
4 changed files with 55 additions and 0 deletions
29
pkgs/applications/version-management/bumpver/default.nix
Normal file
29
pkgs/applications/version-management/bumpver/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib, python3, git, mercurial}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "bumpver";
|
||||
version = "2020.1107";
|
||||
|
||||
src = python3.pkgs.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "75704333a8d1699e2cadcf1fcd3027a2cab6837ae343af10a61c6eef4e0313d7";
|
||||
};
|
||||
|
||||
prePatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "if any(arg.startswith(\"bdist\") for arg in sys.argv):" ""\
|
||||
--replace "import lib3to6" ""\
|
||||
--replace "package_dir = lib3to6.fix(package_dir)" ""
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [ pathlib2 click toml lexid colorama setuptools ];
|
||||
|
||||
checkInputs = [ python3.pkgs.pytestCheckHook git mercurial];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Bump version numbers in project files";
|
||||
homepage = "https://pypi.org/project/bumpver/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kfollesdal ];
|
||||
};
|
||||
}
|
22
pkgs/development/python-modules/lexid/default.nix
Normal file
22
pkgs/development/python-modules/lexid/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, python, pythonOlder, buildPythonPackage, fetchPypi, pytestCheckHook, click }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "lexid";
|
||||
version = "2020.1005";
|
||||
disabled = pythonOlder "3.6";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "52333a2b9ebd14aa0dfeb33de72bd159c2dc31adb9c59cddfc486e2b69bfdcd1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ click ];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "micro library to increment lexically ordered numerical ids";
|
||||
homepage = "https://pypi.org/project/lexid/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kfollesdal ];
|
||||
};
|
||||
}
|
|
@ -2786,6 +2786,8 @@ in
|
|||
inherit (pythonPackages) gyp;
|
||||
};
|
||||
|
||||
bumpver = callPackage ../applications/version-management/bumpver { };
|
||||
|
||||
bup = callPackage ../tools/backup/bup { };
|
||||
|
||||
burp = callPackage ../tools/backup/burp { };
|
||||
|
|
|
@ -3371,6 +3371,8 @@ in {
|
|||
|
||||
leveldb = callPackage ../development/python-modules/leveldb { };
|
||||
|
||||
lexid = callPackage ../development/python-modules/lexid { };
|
||||
|
||||
libagent = callPackage ../development/python-modules/libagent { };
|
||||
|
||||
pa-ringbuffer = callPackage ../development/python-modules/pa-ringbuffer { };
|
||||
|
|
Loading…
Reference in a new issue