Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

43 lines
758 B
Nix

{
lib,
attrs,
buildPythonPackage,
fetchPypi,
mock,
repeated-test,
setuptools-scm,
sphinx,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "sigtools";
version = "4.0.1";
format = "pyproject";
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 = [ ];
};
}