1{ lib, buildPythonPackage, fetchPypi, isPy3k
2, requests_oauthlib, nose, sh }:
3
4buildPythonPackage rec {
5 pname = "bitbucket-api";
6 version = "0.5.0";
7 disabled = isPy3k;
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "b541d9d7f234074a74214505aff1846eb21e5dd6d3915139e817d4675d34f4e3";
12 };
13
14 propagatedBuildInputs = [ requests_oauthlib nose sh ];
15
16 doCheck = false;
17
18 meta = with lib; {
19 homepage = "https://github.com/Sheeprider/BitBucket-api";
20 description = "Python library to interact with BitBucket REST API";
21 license = licenses.mit;
22 };
23}