587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
41 lines
843 B
Nix
41 lines
843 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchPypi
|
|
, setuptools
|
|
, setuptools-scm
|
|
, fsspec
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "universal-pathlib";
|
|
version = "0.2.2";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
pname = "universal_pathlib";
|
|
inherit version;
|
|
hash = "sha256-a8IVVIeSrV2zVTcIscGbr9ni+hZn3JJe1ATJXlKuLxM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
fsspec
|
|
];
|
|
|
|
pythonImportsCheck = [ "upath" ];
|
|
|
|
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/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|