2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
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.1.4";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
pname = "universal_pathlib";
|
|
inherit version;
|
|
hash = "sha256-guXYbRaifg6hrcfYisvLqdAtWkVIgWMXT5bZrCidsuQ=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|