From c631b307a025cd3300703a1088f0bd13ef2e2c73 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Fri, 30 Nov 2018 08:14:26 -0500 Subject: [PATCH] pythonPackages.github3_py: refactor fix broken package --- pkgs/development/python-modules/github3_py/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/github3_py/default.nix b/pkgs/development/python-modules/github3_py/default.nix index 23bcb2833b81..7b378660cffa 100644 --- a/pkgs/development/python-modules/github3_py/default.nix +++ b/pkgs/development/python-modules/github3_py/default.nix @@ -9,10 +9,10 @@ , dateutil , requests , pyopenssl -, uritemplate_py +, uritemplate , ndg-httpsclient -, requests_toolbelt , pyasn1 +, jwcrypto }: buildPythonPackage rec { @@ -25,7 +25,7 @@ buildPythonPackage rec { }; buildInputs = [ unittest2 pytest mock betamax betamax-matchers dateutil ]; - propagatedBuildInputs = [ requests pyopenssl uritemplate_py ndg-httpsclient requests_toolbelt pyasn1 ]; + propagatedBuildInputs = [ requests uritemplate dateutil jwcrypto pyopenssl ndg-httpsclient pyasn1 ]; postPatch = '' sed -i -e 's/mock ==1.0.1/mock>=1.0.1/' setup.py