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