mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
python3Packages.minio: fix dependencies
This commit is contained in:
parent
21c0cc1eee
commit
9c21918c05
|
@ -1,5 +1,5 @@
|
||||||
{ lib, buildPythonPackage, isPy3k, fetchPypi
|
{ lib, buildPythonPackage, isPy3k, fetchPypi
|
||||||
, urllib3, python-dateutil , pytz, faker, mock, nose }:
|
, urllib3, future, python-dateutil , pytz, faker, mock, nose }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "minio";
|
pname = "minio";
|
||||||
|
@ -13,7 +13,7 @@ buildPythonPackage rec {
|
||||||
disabled = !isPy3k;
|
disabled = !isPy3k;
|
||||||
|
|
||||||
checkInputs = [ faker mock nose ];
|
checkInputs = [ faker mock nose ];
|
||||||
propagatedBuildInputs = [ urllib3 python-dateutil pytz ];
|
propagatedBuildInputs = [ urllib3 python-dateutil pytz future ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Simple APIs to access any Amazon S3 compatible object storage server";
|
description = "Simple APIs to access any Amazon S3 compatible object storage server";
|
||||||
|
|
Loading…
Reference in a new issue