Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 90e30394f501
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f65db057f503
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 29, 2019

  1. python3Packages.minio: fix dependencies

    Jonathan Ringer committed Oct 29, 2019
    Copy the full SHA
    9c21918 View commit details

Commits on Oct 30, 2019

  1. Merge pull request #72215 from jonringer/fix-minio

    python3Packages.minio: fix dependencies
    marsam authored Oct 30, 2019
    Copy the full SHA
    f65db05 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/minio/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/minio/default.nix
Original file line number Diff line number Diff line change
@@ -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";