Unverified Commit 7ea97bf4 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.sigtools: add pythonImportsCheck

- update meta
parent 2f65646b
Loading
Loading
Loading
Loading
+12 −8
Original line number Diff line number Diff line
{ 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
  ];

  pythonImportsCheck = [
    "sigtools"
  ];

  meta = with lib; {
    description = "Utilities for working with 3.3's inspect.Signature objects.";
    homepage = "https://pypi.python.org/pypi/sigtools";
    description = "Utilities for working with inspect.Signature objects";
    homepage = "https://sigtools.readthedocs.io/";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };

}