3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #118487 from tomberek/minio_add_certifi

python3Packages.minio: add certifi
This commit is contained in:
Sandro 2021-04-04 23:18:43 +02:00 committed by GitHub
commit ca976db191
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,6 +8,7 @@
, pytz , pytz
, pytestCheckHook , pytestCheckHook
, urllib3 , urllib3
, certifi
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -26,6 +27,7 @@ buildPythonPackage rec {
python-dateutil python-dateutil
pytz pytz
urllib3 urllib3
certifi
]; ];
checkInputs = [ faker mock nose pytestCheckHook ]; checkInputs = [ faker mock nose pytestCheckHook ];