summary refs log tree commit diff
path: root/pkgs/development/python-modules/bitbucket-cli/default.nix
blob: 0a54c0ed17c384f0efefa1fe1bba28d533f37266 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, requests }:

buildPythonPackage rec {
  pname = "bitbucket-cli";
  version = "0.5.1";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "1xmn73x6jirnwfwcdy380ncmkai9f9dhmld6zin01ypbqwgf50fq";
  };

  propagatedBuildInputs = [ requests ];

  # No tests
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Bitbucket command line interface";
    homepage = https://bitbucket.org/zhemao/bitbucket-cli;
    maintainers = with maintainers; [ refnil ];
    license = licenses.bsd2;
  };
}