biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / uhi / default.nix
blobc84408b339ed21af04cc8bb4d4ba82243588d7fa
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   hatchling,
6   hatch-vcs,
7   numpy,
8   pytestCheckHook,
9 }:
11 buildPythonPackage rec {
12   pname = "uhi";
13   version = "0.4.0";
14   format = "pyproject";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-DctrGXdQh9OKMe44jLLHDy7P4ExP/iymMiNBDK5b7vo=";
19   };
21   buildInputs = [
22     hatchling
23     hatch-vcs
24   ];
26   propagatedBuildInputs = [ numpy ];
28   checkInputs = [ pytestCheckHook ];
30   meta = with lib; {
31     description = "Universal Histogram Interface";
32     homepage = "https://uhi.readthedocs.io/";
33     license = licenses.bsd3;
34     maintainers = with maintainers; [ veprbl ];
35   };