Files
nixpkgs/pkgs/development/python-modules/numbagg/default.nix
2025-09-28 10:17:59 +00:00

67 lines
1.1 KiB
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
# build-system
setuptools,
setuptools-scm,
# dependencies
numba,
numpy,
# tests
pytestCheckHook,
bottleneck,
hypothesis,
pandas,
pytest-benchmark,
tabulate,
}:
buildPythonPackage rec {
version = "0.9.3";
pname = "numbagg";
pyproject = true;
src = fetchFromGitHub {
owner = "numbagg";
repo = "numbagg";
tag = "v${version}";
hash = "sha256-MEgSxxKZaL0sPhERFa8DWF+Vkc/VuHDyyB2yfFv/uYw=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
numpy
numba
];
pythonImportsCheck = [ "numbagg" ];
nativeCheckInputs = [
pytestCheckHook
pandas
bottleneck
hypothesis
tabulate
pytest-benchmark
];
pytestFlags = [ "--benchmark-disable" ];
meta = {
description = "Fast N-dimensional aggregation functions with Numba";
homepage = "https://github.com/numbagg/numbagg";
changelog = "https://github.com/numbagg/numbagg/releases/tag/v${version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ flokli ];
};
}