nixpkgs/pkgs/development/python-modules/funcsigs/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

33 lines
762 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
isPyPy,
isPy3k,
}:
buildPythonPackage rec {
pname = "funcsigs";
version = "1.0.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0l4g5818ffyfmfs1a924811azhjj8ax9xd1cffr1mzd3ycn0zfx7";
};
# https://github.com/testing-cabal/funcsigs/issues/10
patches = lib.optionals (isPyPy && isPy3k) [ ./fix-pypy3-tests.patch ];
# requires, unittest2 and package hasn't been maintained since 2013
doCheck = false;
pythonImportsCheck = [ "funcsigs" ];
meta = {
description = "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+";
homepage = "https://github.com/aliles/funcsigs";
maintainers = [ ];
license = lib.licenses.asl20;
};
}