python312Packages.universal-pathlib: 0.2.3 -> 0.2.4 (#340424)

This commit is contained in:
OTABI Tomoya 2024-09-13 15:08:24 +09:00 committed by GitHub
commit e720eb7b94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,23 +10,23 @@
buildPythonPackage rec {
pname = "universal-pathlib";
version = "0.2.3";
format = "pyproject";
version = "0.2.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "universal_pathlib";
inherit version;
hash = "sha256-IvXyif7exLZjlWWWdCZS4hd7yiRmG2yKFz9ZdM/uAFI=";
hash = "sha256-VXChH9iMrRu8YiCz5yP92K38XF4AhlIJ6IrwP/SqFUs=";
};
nativeBuildInputs = [
build-system = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [ fsspec ];
dependencies = [ fsspec ];
pythonImportsCheck = [ "upath" ];