1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-03-06 23:31:34 +00:00

python312Packages.parselmouth: fix build

This commit is contained in:
wxt 2024-12-08 13:59:47 +08:00
parent d88cb592e9
commit 5c1b62b3d9
No known key found for this signature in database
GPG key ID: 8281D5EE2D1825A4

View file

@ -21,7 +21,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "YannickJadoul";
repo = "Parselmouth";
rev = "v${version}";
tag = "v${version}";
fetchSubmodules = true;
hash = "sha256-/Hde/DpSbmHs8WF3PAk4esYuMgOX6SxMaYJrrHYr/ZU=";
};
@ -47,6 +47,11 @@ buildPythonPackage rec {
pytestCheckHook
];
pytestFlagsArray = [
"--run-praat-tests"
"-v"
];
pythonImportsCheck = [ "parselmouth" ];
meta = {