1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pytestCheckHook,
6 six,
7}:
8
9buildPythonPackage rec {
10 pname = "infinity";
11 version = "1.5";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "1npcc4adcc3c9diw4kgmd5c0ikym1iz364p2zp6gs011rqaprald";
17 };
18
19 nativeCheckInputs = [
20 pytestCheckHook
21 six
22 ];
23
24 meta = with lib; {
25 description = "All-in-one infinity value for Python. Can be compared to any object";
26 homepage = "https://github.com/kvesteri/infinity";
27 license = licenses.bsd3;
28 maintainers = with maintainers; [ mupdt ];
29 };
30}