evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / hepunits / default.nix
blobabd89713aa056e52af0cec374b064e4f3e8fb07d
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   hatch-vcs,
6   hatchling,
7   pytestCheckHook,
8 }:
10 buildPythonPackage rec {
11   pname = "hepunits";
12   version = "2.3.5";
13   format = "pyproject";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-lDTNLWpyLJSenp4ivQtZWH9pAlvTc1blxwY18bNwNtg=";
18   };
20   nativeBuildInputs = [
21     hatch-vcs
22     hatchling
23   ];
25   nativeCheckInputs = [ pytestCheckHook ];
27   meta = {
28     description = "Units and constants in the HEP system of units";
29     homepage = "https://github.com/scikit-hep/hepunits";
30     license = lib.licenses.bsd3;
31     maintainers = with lib.maintainers; [ doronbehar ];
32   };