depot/third_party/nixpkgs/pkgs/development/python-modules/makefun/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

44 lines
817 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
# build-system
setuptools,
setuptools-scm,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "makefun";
version = "1.15.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-FvKis02e4MK1eMlgoYCMl04oIs959um5xFWqzhCILUU=";
};
postPatch = ''
substituteInPlace setup.cfg \
--replace "pytest-runner" ""
'';
nativeBuildInputs = [
setuptools
setuptools-scm
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "makefun" ];
meta = with lib; {
homepage = "https://github.com/smarie/python-makefun";
description = "Small library to dynamically create python functions";
license = licenses.bsd2;
maintainers = with maintainers; [ veehaitch ];
};
}