python310Packages.sigtools: add pythonImportsCheck

- update meta
This commit is contained in:
Fabian Affolter 2022-11-19 11:20:19 +01:00 committed by GitHub
parent 2f65646b1a
commit 7ea97bf4af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,13 @@
{ lib
, attrs
, buildPythonPackage
, fetchPypi
, pythonOlder
, sphinx
, mock
, pythonOlder
, repeated-test
, unittestCheckHook
, attrs
, setuptools-scm
, sphinx
, unittestCheckHook
}:
buildPythonPackage rec {
@ -19,7 +19,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
sha256 = "sha256-S44TWpzU0uoA2mcMCTNy105nK6OruH9MmNjnPepURFw=";
hash = "sha256-S44TWpzU0uoA2mcMCTNy105nK6OruH9MmNjnPepURFw=";
};
nativeBuildInputs = [
@ -37,10 +37,14 @@ buildPythonPackage rec {
unittestCheckHook
];
meta = with lib; {
description = "Utilities for working with 3.3's inspect.Signature objects.";
homepage = "https://pypi.python.org/pypi/sigtools";
license = licenses.mit;
};
pythonImportsCheck = [
"sigtools"
];
meta = with lib; {
description = "Utilities for working with inspect.Signature objects";
homepage = "https://sigtools.readthedocs.io/";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}