pythonPackages.pkutils: init at 1.1.1

This commit is contained in:
Drew Risinger 2020-07-01 22:52:13 -04:00 committed by Jon
parent dda3d9dc12
commit c8e496ecc5
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,41 @@
{ lib
, pythonOlder
, buildPythonPackage
, isPy3k
, fetchFromGitHub
, semver
# Check Inputs
, nose
}:
buildPythonPackage rec {
pname = "pkutils";
version = "1.1.1";
disabled = !isPy3k; # some tests using semver fail due to unicode errors on Py2.7
src = fetchFromGitHub {
owner = "reubano";
repo = "pkutils";
rev = "v${version}";
sha256 = "01yaq9sz6vyxk8yiss6hsmy70qj642cr2ifk0sx1mlh488flcm62";
};
propagatedBuildInputs = [ semver ];
# Remove when https://github.com/reubano/pkutils/pull/4 merged
postPatch = ''
substituteInPlace requirements.txt --replace "semver>=2.2.1,<2.7.3" "semver"
'';
checkInputs = [ nose ];
pythonImportsCheck = [ "pkutils" ];
checkPhase = "nosetests";
meta = with lib; {
description = "A Python packaging utility library";
homepage = "https://github.com/reubano/pkutils/";
license = licenses.mit;
maintainers = with maintainers; [ drewrisinger ];
};
}

View File

@ -4783,6 +4783,8 @@ in {
pint = callPackage ../development/python-modules/pint { };
pkutils = callPackage ../development/python-modules/pkutils { };
pygal = callPackage ../development/python-modules/pygal { };
pytaglib = callPackage ../development/python-modules/pytaglib { };