about summary refs log tree commit diff
path: root/pkgs/development/python-modules/infinity/default.nix
blob: d86f1545d90b4eff23d52f4fdd13f505f3c9adba (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
{
  lib,
  buildPythonPackage,
  fetchPypi,
  pytestCheckHook,
  six,
}:

buildPythonPackage rec {
  pname = "infinity";
  version = "1.5";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1npcc4adcc3c9diw4kgmd5c0ikym1iz364p2zp6gs011rqaprald";
  };

  nativeCheckInputs = [
    pytestCheckHook
    six
  ];

  meta = with lib; {
    description = "All-in-one infinity value for Python. Can be compared to any object.";
    homepage = "https://github.com/kvesteri/infinity";
    license = licenses.bsd3;
    maintainers = with maintainers; [ mupdt ];
  };
}