python3Packages.s3fs: 2022.10.0 -> 2022.11.0

This commit is contained in:
Martin Weinelt
2023-01-05 01:10:28 +01:00
parent 9e9d8601f6
commit bc7240f812
@@ -11,16 +11,20 @@
buildPythonPackage rec {
pname = "s3fs";
version = "2022.10.0";
version = "2022.11.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-6N64DyC9CyBZFBuHT9udauuMzjUxLqXywCsiWnigBAY=";
hash = "sha256-EMWsKDpPW2f/rW0fJf9+4CYUJ1DFxdyGh0bNkE9hfDM=";
};
postPatch = ''
sed -i 's/fsspec==.*/fsspec/' requirements.txt
'';
buildInputs = [
docutils
];