python3Packages.strpdatetime: 0.3.0 -> 0.4.0

https://github.com/RhetTbull/strpdatetime/blob/v0.4.0/CHANGELOG.md
This commit is contained in:
Martin Weinelt
2025-01-27 10:57:33 +01:00
parent c1c526d332
commit e5a658f9b8
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "strpdatetime";
version = "0.3.0";
version = "0.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "RhetTbull";
repo = "strpdatetime";
rev = "v${version}";
hash = "sha256-eb3KJCFRkEt9KEP1gMQYuP50qXqItrexJhKvtJDHl9o=";
tag = "v${version}";
hash = "sha256-a+KUM9gQAcNg3ju+YyQXafDlADYCV6B+Wy7EBtcO3S4=";
};
build-system = [ poetry-core ];
@@ -32,7 +32,7 @@ buildPythonPackage rec {
meta = {
description = "Parse strings into Python datetime objects";
license = lib.licenses.psfl;
changelog = "https://github.com/RhetTbull/strpdatetime/blob/${src.rev}/CHANGELOG.md";
changelog = "https://github.com/RhetTbull/strpdatetime/blob/${src.tag}/CHANGELOG.md";
homepage = "https://github.com/RhetTbull/strpdatetime";
maintainers = with lib.maintainers; [ sigmanificient ];
};