mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
36 lines
834 B
Nix
36 lines
834 B
Nix
{ buildPythonPackage
|
|
, callPackage
|
|
, pytestcov
|
|
, fetchPypi
|
|
, lib
|
|
, pytest
|
|
, pythonOlder
|
|
, pytestrunner
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pycategories";
|
|
version = "1.2.0";
|
|
disabled = pythonOlder "3.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "bd70ecb5e94e7659e564ea153f0c7673291dc37c526c246800fc08d6c5378099";
|
|
};
|
|
|
|
nativeBuildInputs = [ pytestrunner ];
|
|
|
|
# Is private because the author states it's unmaintained
|
|
# and shouldn't be used in production code
|
|
propagatedBuildInputs = [ (callPackage ./infix.nix { }) ];
|
|
|
|
checkInputs = [ pytest pytestcov ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.com/danielhones/pycategories";
|
|
description = "Implementation of some concepts from category theory";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dmvianna ];
|
|
};
|
|
}
|