forked from mirrors/nixpkgs
pythonPackages.certifi: does not support python2
Support was officially dropped in
5efdd48f71
This commit is contained in:
parent
34e5bf44fb
commit
7748af9fff
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue