Commit d4b39b85 authored by Dmitry Kalinkin's avatar Dmitry Kalinkin
Browse files

python310Packages.uhi: init at 0.3.3

parent 837cc0d9
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -11901,6 +11901,8 @@ self: super: with self; {
    inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices;
  };

  uhi = callPackage ../development/python-modules/uhi { };

  ujson = callPackage ../development/python-modules/ujson { };

  ukkonen = callPackage ../development/python-modules/ukkonen { };