linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / bitbucket-api / default.nix
blobb874f1af525aeef6baf06e075cc4f976ed494d07
1 { lib, buildPythonPackage, fetchPypi, isPy3k
2 , requests_oauthlib, nose, sh }:
4 buildPythonPackage rec {
5   pname = "bitbucket-api";
6   version = "0.5.0";
7   disabled = isPy3k;
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "b541d9d7f234074a74214505aff1846eb21e5dd6d3915139e817d4675d34f4e3";
12   };
14   propagatedBuildInputs = [ requests_oauthlib nose sh ];
16   doCheck = false;
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   };