Files
nixpkgs/pkgs/development/python-modules/quantities/default.nix
2025-08-26 02:31:55 +00:00

45 lines
963 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
numpy,
pytestCheckHook,
pythonOlder,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "quantities";
version = "0.16.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "python-quantities";
repo = "python-quantities";
tag = "v${version}";
hash = "sha256-6Kl7TiSCSDtMjRKMNVweoGJ1y8kmo1j4SY0tikyAozs=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [ numpy ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "quantities" ];
meta = with lib; {
description = "Quantities is designed to handle arithmetic and conversions of physical quantities";
homepage = "https://python-quantities.readthedocs.io/";
changelog = "https://github.com/python-quantities/python-quantities/blob/v${version}/CHANGES.txt";
license = licenses.bsd2;
maintainers = [ ];
};
}