nixpkgs/pkgs/development/python-modules/sigtools/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

51 lines
830 B
Nix

{ lib
, attrs
, buildPythonPackage
, fetchPypi
, mock
, pythonOlder
, repeated-test
, setuptools-scm
, sphinx
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "sigtools";
version = "4.0.1";
format = "pyproject";
disabled = pythonOlder "3.4";
src = fetchPypi {
inherit pname version;
hash = "sha256-S44TWpzU0uoA2mcMCTNy105nK6OruH9MmNjnPepURFw=";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
attrs
];
nativeCheckInputs = [
mock
repeated-test
sphinx
unittestCheckHook
];
pythonImportsCheck = [
"sigtools"
];
meta = with lib; {
description = "Utilities for working with inspect.Signature objects";
homepage = "https://sigtools.readthedocs.io/";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}