python3Packages.dawg-python: modernize

This commit is contained in:
Harinn
2026-07-10 23:28:13 +07:00
parent d8c2da55d6
commit 9fe1bcd1a6

View File

@@ -5,13 +5,15 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "dawg-python";
version = "0.7.2";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit version;
inherit (finalAttrs) version;
pname = "DAWG-Python";
hash = "sha256-Sl4yhuYmHMoC8gXP1VFqerEBkPowxRwo00WAj1leNCE=";
};
@@ -26,4 +28,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = [ ];
};
}
})