depot/third_party/nixpkgs/pkgs/development/python-modules/fast-histogram/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

54 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
pytestCheckHook,
fetchFromGitHub,
python,
pythonOlder,
setuptools,
setuptools-scm,
numpy,
wheel,
hypothesis,
pytest-cov,
}:
buildPythonPackage rec {
pname = "fast-histogram";
version = "0.14";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "astrofrog";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-vIzDDzz6e7PXArHdZdSSgShuTjy3niVdGtXqgmyJl1w=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [ numpy ];
nativeCheckInputs = [
pytestCheckHook
hypothesis
pytest-cov
];
pytestFlagsArray = [ "${builtins.placeholder "out"}/${python.sitePackages}" ];
pythonImportsCheck = [ "fast_histogram" ];
meta = with lib; {
homepage = "https://github.com/astrofrog/fast-histogram";
description = "Fast 1D and 2D histogram functions in Python";
license = licenses.bsd2;
maintainers = with maintainers; [ ifurther ];
};
}