nixpkgs/pkgs/development/python-modules/ossfs/default.nix
Martin Weinelt abdf5dc772
treewide: remove pythonRelaxDepsHook references
It is is now provided automatically, when `pythonRelaxDeps` or
`pythonRemoveDeps` is defined through `mk-python-derivation`.
2024-06-14 14:52:00 +02:00

54 lines
1,006 B
Nix

{
lib,
aiooss2,
buildPythonPackage,
fetchFromGitHub,
fsspec,
oss2,
pythonOlder,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "ossfs";
version = "2023.12.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "fsspec";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-N1NkpI8inGJCf0xuc+FFmVX85CS7vqzoNddxZ9kqEk0=";
};
pythonRelaxDeps = [
"aiooss2"
"fsspec"
"oss2"
];
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
aiooss2
fsspec
oss2
];
# Most tests require network access
doCheck = false;
pythonImportsCheck = [ "ossfs" ];
meta = with lib; {
description = "Filesystem for Alibaba Cloud (Aliyun) Object Storage System (OSS)";
homepage = "https://github.com/fsspec/ossfs";
changelog = "https://github.com/fsspec/ossfs/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}