1{ stdenv, buildPythonPackage, fetchPypi}:
2
3buildPythonPackage rec {
4 pname = "gorilla";
5 version = "0.3.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "feb2899b923935c25420b94aa8c266ccb5c0315199c685b725303a73195d802c";
10 };
11
12 meta = with stdenv.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}