lol

python3Packages.infinity: init at 1.5

mupdt 7e814a28 29769d2a

+30
+28
pkgs/development/python-modules/infinity/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pytestCheckHook 5 + , six 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "infinity"; 10 + version = "1.5"; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + sha256 = "1npcc4adcc3c9diw4kgmd5c0ikym1iz364p2zp6gs011rqaprald"; 15 + }; 16 + 17 + checkInputs = [ 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 + }
+2
pkgs/top-level/python-packages.nix
··· 4249 4249 4250 4250 incremental = callPackage ../development/python-modules/incremental { }; 4251 4251 4252 + infinity = callPackage ../development/python-modules/infinity { }; 4253 + 4252 4254 inflect = callPackage ../development/python-modules/inflect { }; 4253 4255 4254 4256 inflection = callPackage ../development/python-modules/inflection { };