python3Packages.wheezy-captcha: modernize

This commit is contained in:
Harinn 2026-06-15 23:29:33 +07:00
commit fc7d075163

View file

@ -6,13 +6,15 @@
pillow,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "wheezy.captcha";
version = "3.2.0";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-UtTpgrPK5eRr7sq97jptjdJyvAyrM2oU07+GZr2Ad7s=";
};
@ -28,4 +30,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ Flakebi ];
};
}
})