python310Packages.fsspec: 2022.8.2 -> 2022.10.0

This commit is contained in:
Anthony Roussel 2022-11-01 09:45:33 +01:00
parent cd0a368e08
commit 186bd90884
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E

View File

@ -17,16 +17,16 @@
buildPythonPackage rec {
pname = "fsspec";
version = "2022.8.2";
version = "2022.10.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "intake";
owner = "fsspec";
repo = "filesystem_spec";
rev = version;
hash = "sha256-eT1zqTbU5kfQ7bvzigT9579HfXU6VaOEjRg8VG/DHMI=";
hash = "sha256-+lPt/zqI3Mkt+QRNXq+Dxm3h/ryZJsfrmayVi/BTtbg=";
};
propagatedBuildInputs = [
@ -68,7 +68,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "A specification that Python filesystems should adhere to";
homepage = "https://github.com/intake/filesystem_spec";
homepage = "https://github.com/fsspec/filesystem_spec";
changelog = "https://github.com/fsspec/filesystem_spec/raw/${version}/docs/source/changelog.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ costrouc ];