nixpkgs/pkgs/development/python-modules/parse-type/default.nix
2018-03-07 11:03:01 -06:00

30 lines
730 B
Nix

{ stdenv, fetchPypi, fetchpatch
, buildPythonPackage, pythonOlder
, pytest, pytestrunner
, parse, six, enum34
}:
buildPythonPackage rec {
pname = "parse_type";
version = "0.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "0g3b6gsdwnm8dpkh2vn34q6dzxm9gl908ggyzcv31n9xbp3vv5pm";
};
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 ];
};
}