Merge pull request #244230 from figsoda/upath

python3.pkgs.universal-pathlib: 0.0.23 -> 0.0.24
This commit is contained in:
Jonas Heinrich 2023-07-19 14:29:49 +02:00 committed by GitHub
commit 2fd3552d2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,24 +1,25 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, flit-core
, fetchPypi
, setuptools
, setuptools-scm
, fsspec
}:
buildPythonPackage rec {
pname = "universal-pathlib";
version = "0.0.23";
version = "0.0.24";
format = "pyproject";
src = fetchFromGitHub {
owner = "fsspec";
repo = "universal_pathlib";
rev = "v${version}";
hash = "sha256-UT4S7sqRn0/YFzFL1KzByK44u8G7pwWHERzJEm7xmiw=";
src = fetchPypi {
pname = "universal_pathlib";
inherit version;
hash = "sha256-/L/7leS8afcEr13eT5piSyJp8lGjjIGri+wZ3+qtgw8=";
};
nativeBuildInputs = [
flit-core
setuptools
setuptools-scm
];
propagatedBuildInputs = [
@ -30,7 +31,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Pathlib api extended to use fsspec backends";
homepage = "https://github.com/fsspec/universal_pathlib";
changelog = "https://github.com/fsspec/universal_pathlib/releases/tag/${src.rev}";
changelog = "https://github.com/fsspec/universal_pathlib/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};