1{ lib 2, fetchPypi 3, buildPythonPackage 4}: 5 6buildPythonPackage rec { 7 pname = "dawg-python"; 8 version = "0.7.2"; 9 10 src = fetchPypi { 11 inherit version; 12 pname = "DAWG-Python"; 13 hash = "sha256-Sl4yhuYmHMoC8gXP1VFqerEBkPowxRwo00WAj1leNCE="; 14 }; 15 16 pythonImportsCheck = [ "dawg_python" ]; 17 18 meta = with lib; { 19 description = "Pure Python reader for DAWGs created by dawgdic C++ library or DAWG Python extension"; 20 homepage = "https://github.com/pytries/DAWG-Python"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ ]; 23 }; 24}