nixpkgs/pkgs/development/python-modules/gorilla/default.nix
Marcin Serwin a03723889e
maintainers: drop tbenst
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
2026-02-24 00:22:21 +01:00

35 lines
792 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pythonAtLeast,
setuptools,
}:
buildPythonPackage rec {
pname = "gorilla";
version = "0.4.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-AFq4hTsDcWKnx3u4JGBMbggYeO4DwJrQHvQXRIVgGdM=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "gorilla" ];
disabledTests = lib.optionals (pythonAtLeast "3.12") [ "test_find_patches_2" ];
meta = {
description = "Convenient approach to monkey patching";
homepage = "https://github.com/christophercrouzet/gorilla";
changelog = "https://github.com/christophercrouzet/gorilla/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}