python312Packages.isodate: 0.6.1 -> 0.7.2

https://github.com/gweis/isodate/blob/0.7.2/CHANGES.txt
This commit is contained in:
Martin Weinelt 2024-12-31 14:51:43 +01:00
parent 3ee5ecc95b
commit ed08189738
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -2,32 +2,32 @@
lib,
buildPythonPackage,
fetchPypi,
unittestCheckHook,
six,
setuptools,
setuptools-scm,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "isodate";
version = "0.6.1";
format = "setuptools";
version = "0.7.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "SMWIHefosKDWSMsCTIBi3ITnuEDtgehkx2FP08Envek=";
hash = "sha256-TNGqD0PKdvSmxsApKoX0CzXsLkPjFbWfBubTIXGpU+Y=";
};
propagatedBuildInputs = [ six ];
nativeCheckInputs = [ unittestCheckHook ];
unittestFlagsArray = [
"-s"
"src/isodate/tests"
build-system = [
setuptools
setuptools-scm
];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
changelog = "https://github.com/gweis/isodate/blob/${version}/CHANGES.txt";
description = "ISO 8601 date/time parser";
homepage = "http://cheeseshop.python.org/pypi/isodate";
homepage = "https://github.com/gweis/isodate/";
license = licenses.bsd0;
};
}