pythonPackages.certifi: does not support python2

Support was officially dropped in
5efdd48f71
This commit is contained in:
Robert Schütz 2021-06-20 15:23:25 +02:00
parent 34e5bf44fb
commit 7748af9fff

View file

@ -1,12 +1,15 @@
{ lib
, fetchPypi
, buildPythonPackage
, isPy27
}:
buildPythonPackage rec {
pname = "certifi";
version = "2020.12.5";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "177mdbw0livdjvp17sz6wsfrc32838m9y59v871gpgv2888raj8s";