about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/requirements-parser/default.nix
blob: 71cb33560e05b096a15d41c8631286ce9d890c40 (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
{ lib
, buildPythonPackage
, fetchPypi
, nose
}:
buildPythonPackage rec {
  pname = "requirements-parser";
  version = "0.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5963ee895c2d05ae9f58d3fc641082fb38021618979d6a152b6b1398bd7d4ed4";
  };

  checkInputs = [
    nose
  ];

  checkPhase = ''
    nosetests
  '';

  pythonImportsCheck = [
    "requirements"
  ];

  meta = with lib; {
    description = "A Pip requirements file parser";
    homepage = "https://github.com/davidfischer/requirements-parser";
    license = licenses.bsd2;
    maintainers = teams.determinatesystems.members;
  };
}