python3Packages.swh-shard: init at 2.2.0

This commit is contained in:
Robert Schütz
2025-11-07 14:17:04 -08:00
parent 204fe9a377
commit c7349ac27b
2 changed files with 74 additions and 0 deletions
@@ -0,0 +1,72 @@
{
buildPythonPackage,
click,
cmake,
cmph,
fetchFromGitLab,
lib,
ninja,
pkg-config,
pybind11,
pytest-mock,
pytestCheckHook,
scikit-build-core,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "swh-shard";
version = "2.2.0";
pyproject = true;
src = fetchFromGitLab {
domain = "gitlab.softwareheritage.org";
group = "swh";
owner = "devel";
repo = "swh-shard";
tag = "v${version}";
hash = "sha256-97oZ+Wa8GmyL2V4CnlSvaTbQZJ+mPbg6uVmWd0oxv1Q=";
};
build-system = [
cmake
ninja
pybind11
scikit-build-core
setuptools-scm
];
nativeBuildInputs = [
pkg-config
];
dontUseCmakeConfigure = true;
buildInputs = [
cmph
];
dependencies = [
click
];
pythonImportsCheck = [ "swh.shard" ];
nativeCheckInputs = [
pytest-mock
pytestCheckHook
];
preCheck = ''
# import from $out
rm src/swh/shard/*.py
'';
meta = {
changelog = "https://gitlab.softwareheritage.org/swh/devel/swh-shard/-/tags/v2.2.0";
description = "Shard File Format for the Software Heritage Object Storage";
homepage = "https://gitlab.softwareheritage.org/swh/devel/swh-shard";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.dotlambda ];
};
}
+2
View File
@@ -18077,6 +18077,8 @@ self: super: with self; {
swh-scheduler = callPackage ../development/python-modules/swh-scheduler { };
swh-shard = callPackage ../development/python-modules/swh-shard { };
swh-storage = callPackage ../development/python-modules/swh-storage { };
swh-web-client = callPackage ../development/python-modules/swh-web-client { };