pythonPackages.jira: fix build (#41419)
The build for `pythonPackages.jira` failed with the following error: ``` Download error on https://pypi.python.org/simple/sphinx/: [Errno -2] Name or service not known -- Some packages may not be found! Couldn't find index page for 'sphinx' (maybe misspelled?) Download error on https://pypi.python.org/simple/: [Errno -2] Name or service not known -- Some packages may not be found! No local packages or working download links found for sphinx>=1.6.5 Traceback (most recent call last): ... File "/nix/store/bp4dillg6xxblpf00v8d9nxfx3bnggfy-python3.6-bootstrapped-pip-10.0.1/lib/python3.6/site-packages/setuptools/command/easy_install.py", line 667, in easy_install raise DistutilsError(msg) distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('sphinx>=1.6.5') builder for '/nix/store/8dv7mpspyk6kxwnzqb43rzm4q5j14xp0-python3.6-jira-1.0.15.drv' failed with exit code 1 ``` The root issue is most likely caused by some docs fixes upstream (519183d874
) which were released in 1.0.15. The bump (without the fix) has been performed in7a6bf668fb
. Since `sphinx` isn't needed during runtime, it's not necessary to use it as `propagatedBuildInput`. In order to work around this the dependency had to be removed from from `setup.py`. See https://hydra.nixos.org/build/75004048 for further reference
This commit is contained in:
parent
ca11e5acfa
commit
a47d34cebe
@ -1,29 +1,35 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, isPy3k
|
{ lib, buildPythonPackage, fetchPypi, isPy3k
|
||||||
, pytest, pytestrunner, pbr, glibcLocales , pytestcov
|
, pytest, pytestrunner, pbr, glibcLocales , pytestcov
|
||||||
, requests, requests_oauthlib, requests_toolbelt, defusedxml }:
|
, requests, requests_oauthlib, requests_toolbelt, defusedxml
|
||||||
|
, ipython
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "jira";
|
pname = "jira";
|
||||||
version = "1.0.15";
|
version = "1.0.15";
|
||||||
|
|
||||||
|
PBR_VERSION = version;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "20108a1d5b0dd058d5d4e0047f2d09ee06aaa413b22ca4d5c249e86167417fe8";
|
sha256 = "20108a1d5b0dd058d5d4e0047f2d09ee06aaa413b22ca4d5c249e86167417fe8";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ glibcLocales pytest pytestcov pytestrunner pbr ];
|
buildInputs = [ glibcLocales pytest pytestcov pytestrunner pbr ];
|
||||||
propagatedBuildInputs = [ requests requests_oauthlib requests_toolbelt defusedxml ];
|
propagatedBuildInputs = [ requests requests_oauthlib requests_toolbelt defusedxml pbr ipython ];
|
||||||
|
|
||||||
|
# impure tests because of connectivity attempts to jira servers
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
patches = [ ./sphinx-fix.patch ];
|
||||||
|
|
||||||
LC_ALL = "en_US.utf8";
|
LC_ALL = "en_US.utf8";
|
||||||
|
|
||||||
disabled = !isPy3k;
|
disabled = !isPy3k;
|
||||||
|
|
||||||
# no tests in release tarball
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "This library eases the use of the JIRA REST API from Python.";
|
description = "This library eases the use of the JIRA REST API from Python.";
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = with maintainers; [ globin ];
|
maintainers = with maintainers; [ globin ma27 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
11
pkgs/development/python-modules/jira/sphinx-fix.patch
Normal file
11
pkgs/development/python-modules/jira/sphinx-fix.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
diff --git a/setup.py b/setup.py
|
||||||
|
index c49a24d..31aeec2 100644
|
||||||
|
--- a/setup.py
|
||||||
|
+++ b/setup.py
|
||||||
|
@@ -11,5 +11,5 @@ except ImportError:
|
||||||
|
|
||||||
|
|
||||||
|
setuptools.setup(
|
||||||
|
- setup_requires=['pbr>=3.0.0', 'setuptools>=17.1', 'pytest-runner', 'sphinx>=1.6.5'],
|
||||||
|
+ setup_requires=['pbr>=3.0.0', 'setuptools>=17.1', 'pytest-runner'],
|
||||||
|
pbr=True)
|
Loading…
Reference in New Issue
Block a user