ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / infinity / default.nix
blob1fe406e62ed811faec35486b9866842b299790ae
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , six
6 }:
8 buildPythonPackage rec {
9   pname = "infinity";
10   version = "1.5";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1npcc4adcc3c9diw4kgmd5c0ikym1iz364p2zp6gs011rqaprald";
15   };
17   checkInputs = [
18     pytestCheckHook
19     six
20   ];
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   };