11 buildPythonPackage rec {
12 pname = "pycategories";
14 disabled = pythonOlder "3.4";
17 inherit pname version;
18 sha256 = "bd70ecb5e94e7659e564ea153f0c7673291dc37c526c246800fc08d6c5378099";
21 nativeBuildInputs = [ pytestrunner ];
23 # Is private because the author states it's unmaintained
24 # and shouldn't be used in production code
25 propagatedBuildInputs = [ (callPackage ./infix.nix { }) ];
27 checkInputs = [ pytest pytestcov ];
30 homepage = "https://gitlab.com/danielhones/pycategories";
31 description = "Implementation of some concepts from category theory";
32 license = licenses.mit;
33 maintainers = with maintainers; [ dmvianna ];