python3Packages.yargy: modernize

This commit is contained in:
Harinn
2026-06-15 22:06:13 +07:00
parent 65699649a4
commit d9c9cb8d82
@@ -7,13 +7,15 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "yargy";
version = "0.16.0";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-yRfu+zKkDCPEa2yojWiScHLdAKuU6Q/V3GqwpitZtZM=";
};
@@ -30,4 +32,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ npatsakula ];
};
}
})