Merge pull request #127563 from dotlambda/certifi-disable-21.05

[21.05] pythonPackages.certifi: does not support python2
This commit is contained in:
Sandro 2021-06-20 18:38:53 +02:00 committed by GitHub
commit e46a54b058
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, isPy27
, fetchFromGitHub
, pytestCheckHook
}:
@ -8,6 +9,8 @@ buildPythonPackage rec {
pname = "certifi";
version = "2021.05.30";
disabled = isPy27;
src = fetchFromGitHub {
owner = pname;
repo = "python-certifi";