Skip to content

Commit

Permalink
Merge pull request #72215 from jonringer/fix-minio
Browse files Browse the repository at this point in the history
python3Packages.minio: fix dependencies
  • Loading branch information
marsam committed Oct 30, 2019
2 parents 90e3039 + 9c21918 commit f65db05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/minio/default.nix
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, isPy3k, fetchPypi
, urllib3, python-dateutil , pytz, faker, mock, nose }:
, urllib3, future, python-dateutil , pytz, faker, mock, nose }:

buildPythonPackage rec {
pname = "minio";
Expand All @@ -13,7 +13,7 @@ buildPythonPackage rec {
disabled = !isPy3k;

checkInputs = [ faker mock nose ];
propagatedBuildInputs = [ urllib3 python-dateutil pytz ];
propagatedBuildInputs = [ urllib3 python-dateutil pytz future ];

meta = with lib; {
description = "Simple APIs to access any Amazon S3 compatible object storage server";
Expand Down

0 comments on commit f65db05

Please sign in to comment.