depot/third_party/nixpkgs/pkgs/development/python-modules/pathy/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

67 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, mock
, pathlib-abc
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, 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=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
];
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; {
description = "A Path interface for local and cloud bucket storage";
mainProgram = "pathy";
homepage = "https://github.com/justindujardin/pathy";
license = licenses.asl20;
maintainers = with maintainers; [ melling ];
};
}