1 { lib, libffi, openssl, python3Packages }:
3 inherit (python3Packages) fetchPypi buildPythonApplication;
5 buildPythonApplication rec {
10 sha256 = "86f7d4ad7292c9a27bbc265d09e7bcd00ef8159f20172998d85f25aad53b0df6";
14 substituteInPlace requirements/main.txt --replace "argparse" ""
17 # Tests rely on VCR cassettes being written during tests. R/O nix store prevents this.
19 checkInputs = with python3Packages; [ vcrpy mock hiro ];
20 buildInputs = [ libffi openssl ];
21 propagatedBuildInputs = with python3Packages; [
22 requests six suds-jurko termcolor keyring
27 description = "A command line interface to Jira";
28 homepage = "https://github.com/alisaifee/jira-cli";
29 maintainers = with maintainers; [ nyarly ];
30 license = licenses.mit;