1{ lib, buildPythonPackage, fetchPypi}: 2 3buildPythonPackage rec { 4 pname = "gorilla"; 5 version = "0.4.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "005ab8853b037162a7c77bb824604c6e081878ee03c09ad01ef41744856019d3"; 10 }; 11 12 meta = with lib; { 13 homepage = "https://github.com/christophercrouzet/gorilla"; 14 description = "Convenient approach to monkey patching"; 15 license = licenses.mit; 16 maintainers = with maintainers; [ tbenst ]; 17 }; 18}