15 buildPythonPackage rec {
16 pname = "parselmouth";
19 disabled = pythonOlder "3.7";
21 src = fetchFromGitHub {
22 owner = "YannickJadoul";
24 # Stable branch with cherry picked changes to fit to the newer dependencies versions https://github.com/YannickJadoul/Parselmouth/issues/130
25 rev = "c2cbecc0ce4a0b5d3052cc6c6fbddf4bf133655d";
26 fetchSubmodules = true;
27 hash = "sha256-+6id0PVfpiVjee7O4ZoskNK0dz5ZmTYRTtum3B3tIgE=";
31 # doesn't happen automatically
32 export MAKEFLAGS=-j$NIX_BUILD_CORES
41 dontUseCmakeConfigure = true;
43 dependencies = [ numpy ];
51 pythonImportsCheck = [ "parselmouth" ];
54 description = "Praat in Python, the Pythonic way";
55 homepage = "https://github.com/YannickJadoul/Parselmouth";
56 changelog = "https://github.com/YannickJadoul/Parselmouth/releases/tag/v${version}";
57 license = lib.licenses.gpl3Plus;
58 maintainers = with lib.maintainers; [ derdennisop ];