11 buildPythonPackage rec {
16 disabled = pythonOlder "3.7";
19 inherit pname version;
20 hash = "sha256-AFq4hTsDcWKnx3u4JGBMbggYeO4DwJrQHvQXRIVgGdM=";
23 build-system = [ setuptools ];
25 nativeCheckInputs = [ pytestCheckHook ];
27 pythonImportsCheck = [ "gorilla" ];
29 disabledTests = lib.optionals (pythonAtLeast "3.12") [ "test_find_patches_2" ];
32 description = "Convenient approach to monkey patching";
33 homepage = "https://github.com/christophercrouzet/gorilla";
34 changelog = "https://github.com/christophercrouzet/gorilla/releases/tag/v${version}";
35 license = licenses.mit;
36 maintainers = with maintainers; [ tbenst ];