Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.s3fs: add missing fsspec dependency

authored by Jonathan Ringer and committed by Jon f374bf6c 8a6baaec

+2 -2
+2 -2
pkgs/development/python-modules/s3fs/default.nix
··· 1 - { stdenv, buildPythonPackage, fetchPypi, docutils, boto3 }: 2 3 buildPythonPackage rec { 4 pname = "s3fs"; ··· 10 }; 11 12 buildInputs = [ docutils ]; 13 - propagatedBuildInputs = [ boto3 ]; 14 15 # Depends on `moto` which has a long dependency chain with exact 16 # version requirements that can't be made to work with current
··· 1 + { stdenv, buildPythonPackage, fetchPypi, docutils, boto3, fsspec }: 2 3 buildPythonPackage rec { 4 pname = "s3fs"; ··· 10 }; 11 12 buildInputs = [ docutils ]; 13 + propagatedBuildInputs = [ boto3 fsspec ]; 14 15 # Depends on `moto` which has a long dependency chain with exact 16 # version requirements that can't be made to work with current