depot/third_party/nixpkgs/pkgs/development/python-modules/quantities/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

38 lines
747 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, numpy
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "quantities";
version = "0.13.0";
src = fetchPypi {
inherit pname version;
sha256 = "0fde20115410de21cefa786f3aeae69c1b51bb19ee492190324c1da705e61a81";
};
propagatedBuildInputs = [
numpy
];
nativeCheckInputs = [
pytestCheckHook
];
disabledTests = [
# test fails with numpy 1.24
"test_mul"
];
pythonImportsCheck = [ "quantities" ];
meta = with lib; {
description = "Quantities is designed to handle arithmetic and conversions of physical quantities";
homepage = "https://python-quantities.readthedocs.io/";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
};
}