nixpkgs/pkgs/development/tools/jira_cli/default.nix

33 lines
1 KiB
Nix
Raw Normal View History

{ lib, libffi, openssl, python3Packages }:
2018-05-13 21:35:42 +00:00
let
inherit (python3Packages) fetchPypi buildPythonApplication vcrpy mock hiro;
2018-05-13 21:35:42 +00:00
in
buildPythonApplication rec {
pname = "jira-cli";
2020-11-25 06:55:25 +00:00
version = "3.0";
2018-05-13 21:35:42 +00:00
src = fetchPypi {
inherit pname version;
2020-11-25 06:55:25 +00:00
sha256 = "86f7d4ad7292c9a27bbc265d09e7bcd00ef8159f20172998d85f25aad53b0df6";
2018-05-13 21:35:42 +00:00
};
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 python3Packages; [ vcrpy mock hiro ];
2018-05-13 21:35:42 +00:00
buildInputs = [ libffi openssl ];
propagatedBuildInputs = with python3Packages; [
ordereddict requests six suds-jurko termcolor keyring
2018-05-13 21:35:42 +00:00
jira keyrings-alt
];
meta = with lib; {
2018-05-13 21:35:42 +00:00
description = "A command line interface to Jira";
homepage = "https://github.com/alisaifee/jira-cli";
2018-05-13 21:35:42 +00:00
maintainers = with maintainers; [ nyarly ];
license = licenses.mit;
};
}