python3Packages.temescal: modernize

This commit is contained in:
Harinn
2026-07-24 06:24:48 +07:00
parent 9a53e8c5d0
commit 1b084ad11c
@@ -6,13 +6,16 @@
pycryptodome,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "temescal";
version = "0.5";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
pname = "temescal";
inherit (finalAttrs) version;
hash = "sha256-MfTftheNj8zI3iXIIJU+jy9xikvX9eO58LA0NCMJBnY=";
};
@@ -31,4 +34,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})