dogedns: 0.2.6 -> 0.2.8 (#340101)
[NixPkgs.git] / pkgs / development / python-modules / universal-pathlib / default.nix
blob007aaab546ad64a1df4354abc80b02ddf2f347f8
2   lib,
3   buildPythonPackage,
4   pythonOlder,
5   fetchPypi,
6   setuptools,
7   setuptools-scm,
8   fsspec,
9 }:
11 buildPythonPackage rec {
12   pname = "universal-pathlib";
13   version = "0.2.5";
14   pyproject = true;
16   disabled = pythonOlder "3.8";
18   src = fetchPypi {
19     pname = "universal_pathlib";
20     inherit version;
21     hash = "sha256-6l1PuBeMKrRpz0+kbQzrFsyzeNpG27woqLnB7r3MxlU=";
22   };
24   build-system = [
25     setuptools
26     setuptools-scm
27   ];
29   dependencies = [ fsspec ];
31   pythonImportsCheck = [ "upath" ];
33   meta = with lib; {
34     description = "Pathlib api extended to use fsspec backends";
35     homepage = "https://github.com/fsspec/universal_pathlib";
36     changelog = "https://github.com/fsspec/universal_pathlib/releases/tag/v${version}";
37     license = licenses.mit;
38     maintainers = with maintainers; [ figsoda ];
39   };