python3Packages.pycurl: disable for py2
This commit is contained in:
parent
c4e36c4f0f
commit
baa855134f
@ -1,6 +1,7 @@
|
|||||||
{ buildPythonPackage
|
{ buildPythonPackage
|
||||||
, isPyPy
|
, isPyPy
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
, curl
|
, curl
|
||||||
, openssl
|
, openssl
|
||||||
, bottle
|
, bottle
|
||||||
@ -12,7 +13,7 @@
|
|||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pycurl";
|
pname = "pycurl";
|
||||||
version = "7.43.0.6";
|
version = "7.43.0.6";
|
||||||
disabled = isPyPy; # https://github.com/pycurl/pycurl/issues/208
|
disabled = isPyPy || (pythonOlder "3.5"); # https://github.com/pycurl/pycurl/issues/208
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
Loading…
Reference in New Issue
Block a user