15 buildPythonPackage rec {
16 pname = "fast-histogram";
19 disabled = pythonOlder "3.6";
21 src = fetchFromGitHub {
25 sha256 = "sha256-Cz4BgbtxbUPxL2NSzvZYjbYIN4KUuliUV0bXRRtyvfM=";
34 propagatedBuildInputs = [ numpy ];
42 pytestFlagsArray = [ "${builtins.placeholder "out"}/${python.sitePackages}" ];
44 env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
46 pythonImportsCheck = [ "fast_histogram" ];
49 homepage = "https://github.com/astrofrog/fast-histogram";
50 description = "Fast 1D and 2D histogram functions in Python";
51 license = licenses.bsd2;
52 maintainers = with maintainers; [ ifurther ];