Files
nixpkgs/pkgs/development/python-modules/case/default.nix
T
Martin Weinelt abdf5dc772 treewide: remove pythonRelaxDepsHook references
It is is now provided automatically, when `pythonRelaxDeps` or
`pythonRemoveDeps` is defined through `mk-python-derivation`.
2024-06-14 14:52:00 +02:00

49 lines
815 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pynose,
pythonOlder,
setuptools,
six,
}:
buildPythonPackage rec {
pname = "case";
version = "1.5.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "48432b01d91913451c3512c5b90e31b0f348f1074b166a3431085eb70d784fb1";
};
build-system = [
setuptools
];
pythonRemoveDeps = [
# replaced with pynopse for python 3.12 compat
"nose"
];
dependencies = [
pynose
six
];
# No real unittests, only coverage
doCheck = false;
pythonImportsCheck = [ "case" ];
meta = with lib; {
homepage = "https://github.com/celery/case";
description = "Utilities for unittests handling";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}