1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 15:41:40 +00:00

Merge pull request #3215 from refnil/master

Add bitbucket-cli to nixpkgs
This commit is contained in:
lethalman 2014-07-10 11:23:49 +02:00
commit 3a7100ee0d
3 changed files with 19 additions and 0 deletions

View file

@ -78,6 +78,7 @@
qknight = "Joachim Schiele <js@lastlog.de>";
raskin = "Michael Raskin <7c6f434c@mail.ru>";
redbaron = "Maxim Ivanov <ivanov.maxim@gmail.com>";
refnil = "Martin Lavoie <broemartino@gmail.com>";
relrod = "Ricky Elrod <ricky@elrod.me>";
rickynils = "Rickard Nilsson <rickynils@gmail.com>";
rob = "Rob Vermaas <rob.vermaas@gmail.com>";

View file

@ -593,6 +593,8 @@ let
bfr = callPackage ../tools/misc/bfr { };
bitbucket-cli = pythonPackages.bitbucket-cli;
blockdiag = pythonPackages.blockdiag;
bmon = callPackage ../tools/misc/bmon { };

View file

@ -781,6 +781,22 @@ rec {
};
};
bitbucket-cli = buildPythonPackage rec {
name = "bitbucket-cli-0.4.1";
src = fetchurl {
url = "https://pypi.python.org/packages/source/b/bitbucket-cli/${name}.tar.gz";
md5 = "79cdbdc6c95dfa313d12cbdef406c9f2";
};
pythonPath = [ requests ];
meta = with stdenv.lib; {
description = "Bitbucket command line interface";
homepage = "https://bitbucket.org/zhemao/bitbucket-cli";
maintainers = [ maintainers.refnil ];
};
};
bitstring = buildPythonPackage rec {
name = "bitstring-3.1.2";