pythonPackages.bitbucket_api: fixes #19988

This commit is contained in:
Igor Sharonov 2016-11-04 11:54:03 +03:00
parent fa4167c0a1
commit 83c1e8a020

View File

@ -2630,13 +2630,15 @@ in {
bitbucket_api = buildPythonPackage rec {
name = "bitbucket-api-0.4.4";
# python3 does not support relative imports
disabled = isPy3k;
src = pkgs.fetchurl {
url = "mirror://pypi/b/bitbucket-api/${name}.tar.gz";
sha256 = "e890bc3893d59a6f203c1eb2bae60e78ac4d3869da7ea4fb104dca588aea85b2";
};
propagatedBuildInputs = with self; [ requests_oauth2 nose sh ];
propagatedBuildInputs = with self; [ requests_oauthlib nose sh ];
doCheck = false;