linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pkutils / default.nix
blobc383f5ff86c4909c19df4c30e245cd38e224b66e
1 { lib
2 , buildPythonPackage
3 , isPy3k
4 , fetchFromGitHub
5 , semver
6   # Check Inputs
7 , nose
8 }:
10 buildPythonPackage rec {
11   pname = "pkutils";
12   version = "1.1.1";
13   disabled = !isPy3k; # some tests using semver fail due to unicode errors on Py2.7
15   src = fetchFromGitHub {
16     owner = "reubano";
17     repo = "pkutils";
18     rev = "v${version}";
19     sha256 = "01yaq9sz6vyxk8yiss6hsmy70qj642cr2ifk0sx1mlh488flcm62";
20   };
22   propagatedBuildInputs = [ semver ];
24   # Remove when https://github.com/reubano/pkutils/pull/4 merged
25   postPatch = ''
26     substituteInPlace requirements.txt --replace "semver>=2.2.1,<2.7.3" "semver"
27   '';
29   checkInputs = [ nose ];
30   pythonImportsCheck = [ "pkutils" ];
32   checkPhase = "nosetests";
34   meta = with lib; {
35     description = "A Python packaging utility library";
36     homepage = "https://github.com/reubano/pkutils/";
37     license = licenses.mit;
38     maintainers = with maintainers; [ drewrisinger ];
39   };