blob: e4a094d6397611cffc27edeedfd8e1e408e47e34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
setuptools-scm,
fsspec,
}:
buildPythonPackage rec {
pname = "universal-pathlib";
version = "0.2.6";
pyproject = true;
src = fetchPypi {
pname = "universal_pathlib";
inherit version;
hash = "sha256-UIF6rqqfQWPLHnb1vfhCB/oFznKLI/13lHmzRi5UMKw=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [ fsspec ];
pythonImportsCheck = [ "upath" ];
meta = {
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 = lib.licenses.mit;
maintainers = [ ];
};
}
|