depot/third_party/nixpkgs/pkgs/development/python-modules/uhi/default.nix
Default email 686ce24904 Project import generated by Copybara.
GitOrigin-RevId: ac1f5b72a9e95873d1de0233fddcb56f99884b37
2023-02-16 18:41:37 +01:00

39 lines
657 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, hatchling
, hatch-vcs
, numpy
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "uhi";
version = "0.3.3";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "800caf3a5f1273b08bcc3bb4b49228fe003942e23423812b0110546aad9a24be";
};
buildInputs = [
hatchling
hatch-vcs
];
propagatedBuildInputs = [
numpy
];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Universal Histogram Interface";
homepage = "https://uhi.readthedocs.io/";
license = licenses.bsd3;
maintainers = with maintainers; [ veprbl ];
};
}