python311Packages.pint: 0.24 -> 0.24.1

Diff: https://github.com/hgrecco/pint/compare/refs/tags/0.24...0.24.1

Changelog: https://github.com/hgrecco/pint/blob/0.24.1/CHANGES
This commit is contained in:
Gaetan Lepage
2024-07-05 08:27:35 +02:00
parent 191d8a30c5
commit 04b8f3b11c
@@ -25,24 +25,24 @@
buildPythonPackage rec {
pname = "pint";
version = "0.24";
format = "pyproject";
version = "0.24.1";
pyproject = true;
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "hgrecco";
repo = "pint";
rev = "refs/tags/${version}";
hash = "sha256-zMcLC3SSl/W7+xX4ah3ZV7fN/LIGJzatqH4MNK8/fec=";
hash = "sha256-PQAQvjMi7pFgNhUbw20vc306aTyEbCQNHGef/pxxpXo=";
};
nativeBuildInputs = [
build-system = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
dependencies = [
appdirs
flexcache
flexparser
@@ -67,12 +67,12 @@ buildPythonPackage rec {
export HOME=$(mktemp -d)
'';
meta = with lib; {
meta = {
changelog = "https://github.com/hgrecco/pint/blob/${version}/CHANGES";
description = "Physical quantities module";
mainProgram = "pint-convert";
license = licenses.bsd3;
license = lib.licenses.bsd3;
homepage = "https://github.com/hgrecco/pint/";
maintainers = with maintainers; [ doronbehar ];
maintainers = with lib.maintainers; [ doronbehar ];
};
}