2022-03-27 10:43:01 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
2022-12-30 19:13:17 +00:00
|
|
|
hatch-vcs,
|
|
|
|
hatchling,
|
2022-03-27 10:43:01 +00:00
|
|
|
pytestCheckHook,
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "hepunits";
|
2024-10-06 14:15:28 +00:00
|
|
|
version = "2.3.5";
|
2022-12-30 19:13:17 +00:00
|
|
|
format = "pyproject";
|
2022-03-27 10:43:01 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-10-06 14:15:28 +00:00
|
|
|
hash = "sha256-lDTNLWpyLJSenp4ivQtZWH9pAlvTc1blxwY18bNwNtg=";
|
2022-03-27 10:43:01 +00:00
|
|
|
};
|
2022-12-30 19:13:17 +00:00
|
|
|
|
2022-03-27 10:43:01 +00:00
|
|
|
nativeBuildInputs = [
|
2022-12-30 19:13:17 +00:00
|
|
|
hatch-vcs
|
|
|
|
hatchling
|
2022-03-27 10:43:01 +00:00
|
|
|
];
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
2022-03-27 10:43:01 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Units and constants in the HEP system of units";
|
|
|
|
homepage = "https://github.com/scikit-hep/hepunits";
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
maintainers = with lib.maintainers; [ doronbehar ];
|
|
|
|
};
|
|
|
|
}
|