Add bitbucket-cli to nixpkgs

Adding refnil as mainteners

Added alias in top-level
This commit is contained in:
Martin Lavoie 2014-07-08 21:58:30 +02:00
parent 1e5528c15a
commit 3df7911f35
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";
mainteners = [ mainteners.refnil ];
};
};
bitstring = buildPythonPackage rec {
name = "bitstring-3.1.2";