Files
nixpkgs/pkgs/development/python-modules/funcsigs/default.nix
T
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

30 lines
776 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 = with lib; {
description = "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+";
homepage = "https://github.com/aliles/funcsigs";
maintainers = with maintainers; [ ];
license = licenses.asl20;
};
}