mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #178061 from mupdt/python-infinity
python3Packages.infinity: init at 1.5
This commit is contained in:
commit
a230c8a0bb
2 changed files with 30 additions and 0 deletions
28
pkgs/development/python-modules/infinity/default.nix
Normal file
28
pkgs/development/python-modules/infinity/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "infinity";
|
||||
version = "1.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1npcc4adcc3c9diw4kgmd5c0ikym1iz364p2zp6gs011rqaprald";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -4249,6 +4249,8 @@ in {
|
|||
|
||||
incremental = callPackage ../development/python-modules/incremental { };
|
||||
|
||||
infinity = callPackage ../development/python-modules/infinity { };
|
||||
|
||||
inflect = callPackage ../development/python-modules/inflect { };
|
||||
|
||||
inflection = callPackage ../development/python-modules/inflection { };
|
||||
|
|
Loading…
Reference in a new issue