python310Packages.uhi: init at 0.3.3

This commit is contained in:
Dmitry Kalinkin
2023-02-13 01:49:47 -05:00
parent 837cc0d986
commit d4b39b8569
2 changed files with 41 additions and 0 deletions
@@ -0,0 +1,39 @@
{ 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
View File
@@ -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 { };