python.pkgs.jira: disable on python2
This commit is contained in:
parent
b2c0126b94
commit
d868a6cdeb
pkgs/development/python-modules/jira
|
@ -1,5 +1,5 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, pytest, pytestrunner, pbr, glibcLocales
|
{ lib, buildPythonPackage, fetchPypi, isPy3k
|
||||||
, pytestcov
|
, pytest, pytestrunner, pbr, glibcLocales , pytestcov
|
||||||
, requests, requests_oauthlib, requests_toolbelt, defusedxml }:
|
, requests, requests_oauthlib, requests_toolbelt, defusedxml }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -16,6 +16,8 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
LC_ALL = "en_US.utf8";
|
LC_ALL = "en_US.utf8";
|
||||||
|
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
# no tests in release tarball
|
# no tests in release tarball
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue