nixpkgs/pkgs/development/python-modules/gorilla/default.nix
2021-06-22 13:42:30 +02:00

19 lines
470 B
Nix

{ lib, buildPythonPackage, fetchPypi}:
buildPythonPackage rec {
pname = "gorilla";
version = "0.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "005ab8853b037162a7c77bb824604c6e081878ee03c09ad01ef41744856019d3";
};
meta = with lib; {
homepage = "https://github.com/christophercrouzet/gorilla";
description = "Convenient approach to monkey patching";
license = licenses.mit;
maintainers = with maintainers; [ tbenst ];
};
}