pythonPackages.bitbucket-cli: Move to own file
This commit is contained in:
committed by
Frederik Rietdijk
parent
9ae3047c2f
commit
03fa93875c
23
pkgs/development/python-modules/bitbucket-cli/default.nix
Normal file
23
pkgs/development/python-modules/bitbucket-cli/default.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user