mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
python3Packages.minio: fix dependencies
This commit is contained in:
parent
21c0cc1eee
commit
9c21918c05
|
@ -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";
|
||||
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue