summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycategories/default.nix
blob: ec902e0b385dc830055ef0e44a50aa01d291f4e5 (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
34
35
{ buildPythonPackage
, callPackage
, pytest-cov
, fetchPypi
, lib
, pytest
, pythonOlder
, pytest-runner
}:

buildPythonPackage rec {
  pname = "pycategories";
  version = "1.2.0";
  disabled = pythonOlder "3.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "bd70ecb5e94e7659e564ea153f0c7673291dc37c526c246800fc08d6c5378099";
  };

  nativeBuildInputs = [ pytest-runner ];

  # Is private because the author states it's unmaintained
  # and shouldn't be used in production code
  propagatedBuildInputs = [ (callPackage ./infix.nix { }) ];

  checkInputs = [ pytest pytest-cov ];

  meta = with lib; {
    homepage = "https://gitlab.com/danielhones/pycategories";
    description = "Implementation of some concepts from category theory";
    license = licenses.mit;
    maintainers = with maintainers; [ dmvianna ];
  };
}