python3Packages.pycurl: disable for py2

This commit is contained in:
Jonathan Ringer 2020-11-05 15:38:33 -08:00
parent c4e36c4f0f
commit baa855134f

View file

@ -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;