python.pkgs.jira: disable on python2

This commit is contained in:
Robin Gloster 2018-05-01 12:53:11 +02:00
parent b2c0126b94
commit d868a6cdeb
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF

View File

@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi, pytest, pytestrunner, pbr, glibcLocales
, pytestcov
{ lib, buildPythonPackage, fetchPypi, isPy3k
, pytest, pytestrunner, pbr, glibcLocales , pytestcov
, requests, requests_oauthlib, requests_toolbelt, defusedxml }:
buildPythonPackage rec {
@ -16,6 +16,8 @@ buildPythonPackage rec {
LC_ALL = "en_US.utf8";
disabled = !isPy3k;
# no tests in release tarball
doCheck = false;