Merge pull request #244230 from figsoda/upath

python3.pkgs.universal-pathlib: 0.0.23 -> 0.0.24

authored by Jonas Heinrich and committed by GitHub 2fd3552d 58e29822

+11 -10
+11 -10
pkgs/development/python-modules/universal-pathlib/default.nix
··· 1 { lib 2 , buildPythonPackage 3 - , fetchFromGitHub 4 - , flit-core 5 , fsspec 6 }: 7 8 buildPythonPackage rec { 9 pname = "universal-pathlib"; 10 - version = "0.0.23"; 11 format = "pyproject"; 12 13 - src = fetchFromGitHub { 14 - owner = "fsspec"; 15 - repo = "universal_pathlib"; 16 - rev = "v${version}"; 17 - hash = "sha256-UT4S7sqRn0/YFzFL1KzByK44u8G7pwWHERzJEm7xmiw="; 18 }; 19 20 nativeBuildInputs = [ 21 - flit-core 22 ]; 23 24 propagatedBuildInputs = [ ··· 30 meta = with lib; { 31 description = "Pathlib api extended to use fsspec backends"; 32 homepage = "https://github.com/fsspec/universal_pathlib"; 33 - changelog = "https://github.com/fsspec/universal_pathlib/releases/tag/${src.rev}"; 34 license = licenses.mit; 35 maintainers = with maintainers; [ figsoda ]; 36 };
··· 1 { lib 2 , buildPythonPackage 3 + , fetchPypi 4 + , setuptools 5 + , setuptools-scm 6 , fsspec 7 }: 8 9 buildPythonPackage rec { 10 pname = "universal-pathlib"; 11 + version = "0.0.24"; 12 format = "pyproject"; 13 14 + src = fetchPypi { 15 + pname = "universal_pathlib"; 16 + inherit version; 17 + hash = "sha256-/L/7leS8afcEr13eT5piSyJp8lGjjIGri+wZ3+qtgw8="; 18 }; 19 20 nativeBuildInputs = [ 21 + setuptools 22 + setuptools-scm 23 ]; 24 25 propagatedBuildInputs = [ ··· 31 meta = with lib; { 32 description = "Pathlib api extended to use fsspec backends"; 33 homepage = "https://github.com/fsspec/universal_pathlib"; 34 + changelog = "https://github.com/fsspec/universal_pathlib/releases/tag/v${version}"; 35 license = licenses.mit; 36 maintainers = with maintainers; [ figsoda ]; 37 };