pythonPackages.gorilla: init at 0.3.0

This commit is contained in:
Tyler Benster 2019-11-24 18:43:23 -08:00 committed by Jon
parent 07bb282c84
commit 7a49699a30
2 changed files with 20 additions and 0 deletions

View 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 ];
};
}

View file

@ -3777,6 +3777,8 @@ in {
google_resumable_media = callPackage ../development/python-modules/google_resumable_media { };
gorilla = callPackage ../development/python-modules/gorilla { };
gpgme = toPythonModule (pkgs.gpgme.override {
pythonSupport = true;
inherit python;