15 buildPythonPackage rec {
16 pname = "parselmouth";
19 disabled = pythonOlder "3.7";
21 src = fetchFromGitHub {
22 owner = "YannickJadoul";
25 fetchSubmodules = true;
26 hash = "sha256-/Hde/DpSbmHs8WF3PAk4esYuMgOX6SxMaYJrrHYr/ZU=";
30 # doesn't happen automatically
31 export MAKEFLAGS=-j$NIX_BUILD_CORES
40 dontUseCmakeConfigure = true;
42 dependencies = [ numpy ];
50 pythonImportsCheck = [ "parselmouth" ];
53 description = "Praat in Python, the Pythonic way";
54 homepage = "https://github.com/YannickJadoul/Parselmouth";
55 changelog = "https://github.com/YannickJadoul/Parselmouth/releases/tag/v${version}";
56 license = lib.licenses.gpl3Plus;
57 maintainers = with lib.maintainers; [ derdennisop ];