jira-cli: Use Python 3.x
It otherwise reports "error: jira-2.0.0 not supported for interpreter python2.7"
This commit is contained in:
parent
368b72a71d
commit
8d35005491
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, libffi, openssl, pythonPackages }:
|
{ stdenv, libffi, openssl, python3Packages }:
|
||||||
let
|
let
|
||||||
inherit (pythonPackages) fetchPypi buildPythonApplication vcrpy mock hiro;
|
inherit (python3Packages) fetchPypi buildPythonApplication vcrpy mock hiro;
|
||||||
in
|
in
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "jira-cli";
|
pname = "jira-cli";
|
||||||
@ -16,9 +16,9 @@ in
|
|||||||
|
|
||||||
# Tests rely on VCR cassettes being written during tests. R/O nix store prevents this.
|
# Tests rely on VCR cassettes being written during tests. R/O nix store prevents this.
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
checkInputs = with pythonPackages; [ vcrpy mock hiro ];
|
checkInputs = with python3Packages; [ vcrpy mock hiro ];
|
||||||
buildInputs = [ libffi openssl ];
|
buildInputs = [ libffi openssl ];
|
||||||
propagatedBuildInputs = with pythonPackages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
argparse ordereddict requests six suds-jurko termcolor keyring
|
argparse ordereddict requests six suds-jurko termcolor keyring
|
||||||
jira keyrings-alt
|
jira keyrings-alt
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user