about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pkutils/default.nix
blob: 48afe57ef34a7cace92585fd39b3ce0a096511fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{ lib
, buildPythonPackage
, fetchFromGitHub
, nose
, pythonOlder
, semver
}:

buildPythonPackage rec {
  pname = "pkutils";
  version = "2.0.0";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "reubano";
    repo = "pkutils";
    rev = "v${version}";
    sha256 = "sha256-jvRUjuxlcfmJOX50bnZR/pP2Axe1KDy9/KGXTL4yPxA=";
  };

  propagatedBuildInputs = [
    semver
  ];

  checkInputs = [
    nose
  ];

  postPatch = ''
    # Remove when https://github.com/reubano/pkutils/pull/4 merged
    substituteInPlace requirements.txt \
      --replace "semver>=2.2.1,<2.7.3" "semver"
  '';

  checkPhase = ''
    runHook preCheck
    nosetests
    runHook postCheck
  '';

  pythonImportsCheck = [
    "pkutils"
  ];

  meta = with lib; {
    description = "A Python packaging utility library";
    homepage = "https://github.com/reubano/pkutils/";
    license = licenses.mit;
    maintainers = with maintainers; [ drewrisinger ];
  };
}