summary refs log tree commit diff
path: root/pkgs/development/python-modules/parse-type/default.nix
blob: cbf4ee0836e48a3aa52853c5b5926a126643df81 (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
{ stdenv, fetchPypi
, buildPythonPackage, pythonOlder
, pytest, pytestrunner
, parse, six, enum34
}:

buildPythonPackage rec {
  pname = "parse_type";
  version = "0.5.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "02wclgiqky06y36b3q07b7ngpks5j0gmgl6n71ac2j2hscc0nsbz";
  };

  checkInputs = [ pytest pytestrunner ];
  propagatedBuildInputs = [ parse six ] ++ stdenv.lib.optional (pythonOlder "3.4") enum34;

  checkPhase = ''
    py.test tests
  '';

  meta = with stdenv.lib; {
    homepage = "https://github.com/jenisys/parse_type";
    description = "Simplifies to build parse types based on the parse module";
    license = licenses.bsd3;
    maintainers = with maintainers; [ alunduil ];
  };
}