Files
2026-07-10 23:28:13 +07:00

32 lines
659 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "dawg-python";
version = "0.7.2";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit (finalAttrs) version;
pname = "DAWG-Python";
hash = "sha256-Sl4yhuYmHMoC8gXP1VFqerEBkPowxRwo00WAj1leNCE=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "dawg_python" ];
meta = {
description = "Pure Python reader for DAWGs created by dawgdic C++ library or DAWG Python extension";
homepage = "https://github.com/pytries/DAWG-Python";
license = lib.licenses.mit;
maintainers = [ ];
};
})