python2Packages.bitbucket-cli: move to top-level
This commit is contained in:
parent
b487ccf500
commit
4acf7d91b3
@ -1,16 +1,19 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, isPy3k, requests }:
|
{ lib
|
||||||
|
, python2
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
python2.pkgs.buildPythonApplication rec {
|
||||||
pname = "bitbucket-cli";
|
pname = "bitbucket-cli";
|
||||||
version = "0.5.1";
|
version = "0.5.1";
|
||||||
disabled = isPy3k;
|
|
||||||
|
|
||||||
src = fetchPypi {
|
src = python2.pkgs.fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1xmn73x6jirnwfwcdy380ncmkai9f9dhmld6zin01ypbqwgf50fq";
|
sha256 = "1xmn73x6jirnwfwcdy380ncmkai9f9dhmld6zin01ypbqwgf50fq";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ requests ];
|
propagatedBuildInputs = with python2.pkgs; [
|
||||||
|
requests
|
||||||
|
];
|
||||||
|
|
||||||
# No tests
|
# No tests
|
||||||
doCheck = false;
|
doCheck = false;
|
@ -2192,7 +2192,7 @@ with pkgs;
|
|||||||
|
|
||||||
birdtray = libsForQt5.callPackage ../applications/misc/birdtray { };
|
birdtray = libsForQt5.callPackage ../applications/misc/birdtray { };
|
||||||
|
|
||||||
bitbucket-cli = python2Packages.bitbucket-cli;
|
bitbucket-cli = callPackage ../tools/misc/bitbucket-cli { };
|
||||||
|
|
||||||
bitbucket-server-cli = callPackage ../applications/version-management/git-and-tools/bitbucket-server-cli { };
|
bitbucket-server-cli = callPackage ../applications/version-management/git-and-tools/bitbucket-server-cli { };
|
||||||
|
|
||||||
|
@ -30,8 +30,6 @@ with self; with super; {
|
|||||||
|
|
||||||
bitbucket_api = callPackage ../development/python-modules/bitbucket-api { };
|
bitbucket_api = callPackage ../development/python-modules/bitbucket-api { };
|
||||||
|
|
||||||
bitbucket-cli = callPackage ../development/python-modules/bitbucket-cli { };
|
|
||||||
|
|
||||||
blivet = callPackage ../development/python-modules/blivet { };
|
blivet = callPackage ../development/python-modules/blivet { };
|
||||||
|
|
||||||
box2d = callPackage ../development/python-modules/box2d { };
|
box2d = callPackage ../development/python-modules/box2d { };
|
||||||
|
Loading…
Reference in New Issue
Block a user