depot/third_party/nixpkgs/pkgs/development/python-modules/quantiphy/default.nix
Default email 686ce24904 Project import generated by Copybara.
GitOrigin-RevId: ac1f5b72a9e95873d1de0233fddcb56f99884b37
2023-02-16 18:41:37 +01:00

57 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, flitBuildHook
, pytestCheckHook
, pythonOlder
, inform
, parametrize-from-file
, setuptools
, voluptuous
, quantiphy-eval
, rkm-codes
}:
buildPythonPackage rec {
pname = "quantiphy";
version = "2.19";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "KenKundert";
repo = "quantiphy";
rev = "v${version}";
hash = "sha256-oSWq/D1EX6mxUDElfujyOSEtql0csAm72u2B5RuQddE=";
};
nativeBuildInputs = [
flitBuildHook
];
propagatedBuildInputs = [
quantiphy-eval
rkm-codes
];
nativeCheckInputs = [
inform
parametrize-from-file
pytestCheckHook
setuptools
voluptuous
];
pythonImportsCheck = [
"quantiphy"
];
meta = with lib; {
description = "Module for physical quantities (numbers with units)";
homepage = "https://quantiphy.readthedocs.io";
changelog = "https://github.com/KenKundert/quantiphy/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ jpetrucciani ];
};
}