Files
nixpkgs/pkgs/development/python-modules/infinity/default.nix
T
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

30 lines
588 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, six
}:
buildPythonPackage rec {
pname = "infinity";
version = "1.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1npcc4adcc3c9diw4kgmd5c0ikym1iz364p2zp6gs011rqaprald";
};
nativeCheckInputs = [
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 ];
};
}