5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
53 lines
1 KiB
Nix
53 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 ];
|
|
};
|
|
}
|