anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / sigtools / default.nix
blob46c3e3caad9f68c56e68cb9414d54e65e7126758
2   lib,
3   attrs,
4   buildPythonPackage,
5   fetchPypi,
6   mock,
7   repeated-test,
8   setuptools-scm,
9   sphinx,
10   unittestCheckHook,
13 buildPythonPackage rec {
14   pname = "sigtools";
15   version = "4.0.1";
16   format = "pyproject";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-S44TWpzU0uoA2mcMCTNy105nK6OruH9MmNjnPepURFw=";
21   };
23   nativeBuildInputs = [ setuptools-scm ];
25   propagatedBuildInputs = [ attrs ];
27   nativeCheckInputs = [
28     mock
29     repeated-test
30     sphinx
31     unittestCheckHook
32   ];
34   pythonImportsCheck = [ "sigtools" ];
36   meta = with lib; {
37     description = "Utilities for working with inspect.Signature objects";
38     homepage = "https://sigtools.readthedocs.io/";
39     license = licenses.mit;
40     maintainers = [ ];
41   };