Skip to content

Commit

Permalink
python310Packages.uhi: init at 0.3.3
Browse files Browse the repository at this point in the history
(cherry picked from commit d4b39b8)
  • Loading branch information
veprbl committed Feb 13, 2023
1 parent 0407b30 commit 10eb694
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
39 changes: 39 additions & 0 deletions pkgs/development/python-modules/uhi/default.nix
Original file line number Diff line number Diff line change
@@ -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 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11529,6 +11529,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 { };
Expand Down

0 comments on commit 10eb694

Please sign in to comment.