Files
nixpkgs/pkgs/development/python-modules/pathy/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

60 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
mock,
pathlib-abc,
pytestCheckHook,
pythonOlder,
setuptools,
smart-open,
typer,
}:
buildPythonPackage rec {
pname = "pathy";
version = "0.11.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-uz0OawuL92709jxxkeluCvLtZcj9tfoXSI+ch55jcG0=";
};
pythonRelaxDeps = [ "smart-open" ];
build-system = [ setuptools ];
dependencies = [
pathlib-abc
smart-open
typer
];
nativeCheckInputs = [
mock
pytestCheckHook
];
disabledTestPaths = [
# Exclude tests that require provider credentials
"pathy/_tests/test_clients.py"
"pathy/_tests/test_gcs.py"
"pathy/_tests/test_s3.py"
];
pythonImportsCheck = [ "pathy" ];
meta = with lib; {
# https://github.com/justindujardin/pathy/issues/113
broken = pathlib-abc.version != "0.1.1";
description = "Path interface for local and cloud bucket storage";
mainProgram = "pathy";
homepage = "https://github.com/justindujardin/pathy";
license = licenses.asl20;
maintainers = with maintainers; [ melling ];
};
}