Files
nixpkgs/pkgs/development/python-modules/pathy/default.nix
Robert Schütz 6412ed67a6 python313Packages.pathy: mark broken
It is incompatible with recent versions of pathlib-abc.
2025-03-30 20:54:42 -07: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 ];
};
}