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