jira_cli: init at 2.2
This commit is contained in:
parent
42d0ce8a28
commit
51f4a46af2
32
pkgs/development/tools/jira_cli/default.nix
Normal file
32
pkgs/development/tools/jira_cli/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ stdenv, libffi, openssl, pythonPackages }:
|
||||||
|
let
|
||||||
|
inherit (pythonPackages) fetchPypi buildPythonApplication vcrpy mock hiro;
|
||||||
|
in
|
||||||
|
buildPythonApplication rec {
|
||||||
|
pname = "jira-cli";
|
||||||
|
version = "2.2";
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "314118d5d851394ebf910122fd7ce871f63581393968c71456441eb56be3b112";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace requirements/main.txt --replace "argparse" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Tests rely on VCR cassettes being written during tests. R/O nix store prevents this.
|
||||||
|
doCheck = false;
|
||||||
|
checkInputs = with pythonPackages; [ vcrpy mock hiro ];
|
||||||
|
buildInputs = [ libffi openssl ];
|
||||||
|
propagatedBuildInputs = with pythonPackages; [
|
||||||
|
argparse ordereddict requests six suds-jurko termcolor keyring
|
||||||
|
jira keyrings-alt
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A command line interface to Jira";
|
||||||
|
homepage = http://github.com/alisaifee/jira-cli;
|
||||||
|
maintainers = with maintainers; [ nyarly ];
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
@ -3150,6 +3150,8 @@ with pkgs;
|
|||||||
jing = self.jing-trang;
|
jing = self.jing-trang;
|
||||||
jing-trang = callPackage ../tools/text/xml/jing-trang { };
|
jing-trang = callPackage ../tools/text/xml/jing-trang { };
|
||||||
|
|
||||||
|
jira-cli = callPackage ../development/tools/jira_cli { };
|
||||||
|
|
||||||
jl = haskellPackages.callPackage ../development/tools/jl { };
|
jl = haskellPackages.callPackage ../development/tools/jl { };
|
||||||
|
|
||||||
jmespath = callPackage ../development/tools/jmespath { };
|
jmespath = callPackage ../development/tools/jmespath { };
|
||||||
|
@ -2994,6 +2994,8 @@ in {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
hiro = callPackage ../development/python-modules/hiro {};
|
||||||
|
|
||||||
hglib = callPackage ../development/python-modules/hglib {};
|
hglib = callPackage ../development/python-modules/hglib {};
|
||||||
|
|
||||||
humanize = buildPythonPackage rec {
|
humanize = buildPythonPackage rec {
|
||||||
@ -5070,6 +5072,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
keyrings-alt = callPackage ../development/python-modules/keyrings-alt {};
|
||||||
|
|
||||||
SPARQLWrapper = buildPythonPackage rec {
|
SPARQLWrapper = buildPythonPackage rec {
|
||||||
name = "SPARQLWrapper-${version}";
|
name = "SPARQLWrapper-${version}";
|
||||||
|
Loading…
Reference in New Issue
Block a user