python312Packages.fast-histogram: refactor

This commit is contained in:
Fabian Affolter
2025-01-13 13:31:59 +01:00
parent ffbb417c20
commit 06c9cf23aa
@@ -1,44 +1,42 @@
{
lib,
buildPythonPackage,
pytestCheckHook,
fetchFromGitHub,
hypothesis,
numpy,
pytest-cov-stub,
pytestCheckHook,
python,
pythonOlder,
setuptools,
setuptools-scm,
numpy,
wheel,
hypothesis,
pytest-cov-stub,
setuptools,
}:
buildPythonPackage rec {
pname = "fast-histogram";
version = "0.14";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "astrofrog";
repo = pname;
repo = "fast-histogram";
tag = "v${version}";
sha256 = "sha256-vIzDDzz6e7PXArHdZdSSgShuTjy3niVdGtXqgmyJl1w=";
hash = "sha256-vIzDDzz6e7PXArHdZdSSgShuTjy3niVdGtXqgmyJl1w=";
};
nativeBuildInputs = [
build-system = [
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [ numpy ];
dependencies = [ numpy ];
nativeCheckInputs = [
pytestCheckHook
hypothesis
pytest-cov-stub
pytestCheckHook
];
pytestFlagsArray = [ "${builtins.placeholder "out"}/${python.sitePackages}" ];
@@ -46,8 +44,9 @@ buildPythonPackage rec {
pythonImportsCheck = [ "fast_histogram" ];
meta = with lib; {
homepage = "https://github.com/astrofrog/fast-histogram";
description = "Fast 1D and 2D histogram functions in Python";
homepage = "https://github.com/astrofrog/fast-histogram";
changelog = "https://github.com/astrofrog/fast-histogram/blob/v${version}/CHANGES.md";
license = licenses.bsd2;
maintainers = with maintainers; [ ifurther ];
};