biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pint / default.nix
blob51ef03ffc7dd93d523f6dfd61bd8b4c5f1d09557
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
7   # build-system
8   setuptools,
9   setuptools-scm,
11   # dependencies
12   appdirs,
13   flexcache,
14   flexparser,
15   typing-extensions,
17   # tests
18   pytestCheckHook,
19   pytest-subtests,
20   pytest-benchmark,
21   numpy,
22   matplotlib,
23   uncertainties,
26 buildPythonPackage rec {
27   pname = "pint";
28   version = "0.24.1";
29   pyproject = true;
31   disabled = pythonOlder "3.9";
33   src = fetchFromGitHub {
34     owner = "hgrecco";
35     repo = "pint";
36     rev = "refs/tags/${version}";
37     hash = "sha256-PQAQvjMi7pFgNhUbw20vc306aTyEbCQNHGef/pxxpXo=";
38   };
40   build-system = [
41     setuptools
42     setuptools-scm
43   ];
45   dependencies = [
46     appdirs
47     flexcache
48     flexparser
49     typing-extensions
51     # Both uncertainties and numpy are not necessarily needed for every
52     # function of pint, but needed for the pint-convert executable which we
53     # necessarily distribute with this package as it is.
54     uncertainties
55     numpy
56   ];
58   nativeCheckInputs = [
59     pytestCheckHook
60     pytest-subtests
61     pytest-benchmark
62     matplotlib
63   ];
65   pytestFlagsArray = [ "--benchmark-disable" ];
67   preCheck = ''
68     export HOME=$(mktemp -d)
69   '';
71   meta = {
72     changelog = "https://github.com/hgrecco/pint/blob/${version}/CHANGES";
73     description = "Physical quantities module";
74     mainProgram = "pint-convert";
75     license = lib.licenses.bsd3;
76     homepage = "https://github.com/hgrecco/pint/";
77     maintainers = with lib.maintainers; [ doronbehar ];
78   };