10 buildPythonPackage rec {
13 disabled = !isPy3k; # some tests using semver fail due to unicode errors on Py2.7
15 src = fetchFromGitHub {
19 sha256 = "01yaq9sz6vyxk8yiss6hsmy70qj642cr2ifk0sx1mlh488flcm62";
22 propagatedBuildInputs = [ semver ];
24 # Remove when https://github.com/reubano/pkutils/pull/4 merged
26 substituteInPlace requirements.txt --replace "semver>=2.2.1,<2.7.3" "semver"
29 checkInputs = [ nose ];
30 pythonImportsCheck = [ "pkutils" ];
32 checkPhase = "nosetests";
35 description = "A Python packaging utility library";
36 homepage = "https://github.com/reubano/pkutils/";
37 license = licenses.mit;
38 maintainers = with maintainers; [ drewrisinger ];