pythonPackages.cloudpickle: disable python2, abandoned

This commit is contained in:
Jonathan Ringer 2020-06-16 13:46:14 -07:00
parent 3701913775
commit 03b2293d8b

View file

@ -1,8 +1,9 @@
{ stdenv, buildPythonPackage, fetchPypi, pytest, mock }:
{ stdenv, buildPythonPackage, fetchPypi, isPy27, pytest, mock }:
buildPythonPackage rec {
pname = "cloudpickle";
version = "1.4.1";
disabled = isPy27; # abandoned upstream
src = fetchPypi {
inherit pname version;