pythonPackages.gorilla: init at 0.3.0
This commit is contained in:
parent
07bb282c84
commit
7a49699a30
18
pkgs/development/python-modules/gorilla/default.nix
Normal file
18
pkgs/development/python-modules/gorilla/default.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "gorilla";
|
||||||
|
version = "0.3.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "feb2899b923935c25420b94aa8c266ccb5c0315199c685b725303a73195d802c";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/christophercrouzet/gorilla";
|
||||||
|
description = "Convenient approach to monkey patching";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ tbenst ];
|
||||||
|
};
|
||||||
|
}
|
@ -3777,6 +3777,8 @@ in {
|
|||||||
|
|
||||||
google_resumable_media = callPackage ../development/python-modules/google_resumable_media { };
|
google_resumable_media = callPackage ../development/python-modules/google_resumable_media { };
|
||||||
|
|
||||||
|
gorilla = callPackage ../development/python-modules/gorilla { };
|
||||||
|
|
||||||
gpgme = toPythonModule (pkgs.gpgme.override {
|
gpgme = toPythonModule (pkgs.gpgme.override {
|
||||||
pythonSupport = true;
|
pythonSupport = true;
|
||||||
inherit python;
|
inherit python;
|
||||||
|
Loading…
Reference in New Issue
Block a user