python3Packages.udatetime: modernize

This commit is contained in:
Harinn
2026-07-24 11:39:24 +07:00
parent bd10e9034d
commit 92e86d0f21
@@ -5,13 +5,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "udatetime";
version = "0.0.17";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
pname = "udatetime";
inherit (finalAttrs) version;
hash = "sha256-sQvFVwaZpDinLitaZOdr2MKO4779FvIJOHpVB/oLgwE=";
};
@@ -29,4 +32,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = [ ];
};
}
})