Files
nixpkgs/pkgs/development/python-modules/universal-pathlib/default.nix
Michael Daniels 30420dabad treewide: drop figsoda as maintainer (part 2)
s/maintainers = with maintainers; [ figsoda ];/maintainers = with maintainers; [ ];/
2025-11-02 20:16:11 -05:00

41 lines
802 B
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
setuptools,
setuptools-scm,
fsspec,
}:
buildPythonPackage rec {
pname = "universal-pathlib";
version = "0.2.6";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "universal_pathlib";
inherit version;
hash = "sha256-UIF6rqqfQWPLHnb1vfhCB/oFznKLI/13lHmzRi5UMKw=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [ 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 = [ ];
};
}