python3Packages.parselmouth: init at 0.4.4 (#334636)

This commit is contained in:
Sandro 2024-10-07 18:41:14 +02:00 committed by GitHub
commit 925c23dc68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,60 @@
{
lib,
buildPythonPackage,
cmake,
fetchFromGitHub,
future,
numpy,
pytest-lazy-fixture,
pytestCheckHook,
pythonOlder,
scikit-build,
setuptools,
}:
buildPythonPackage rec {
pname = "parselmouth";
version = "0.4.4";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "YannickJadoul";
repo = "Parselmouth";
# Stable branch with cherry picked changes to fit to the newer dependencies versions https://github.com/YannickJadoul/Parselmouth/issues/130
rev = "c2cbecc0ce4a0b5d3052cc6c6fbddf4bf133655d";
fetchSubmodules = true;
hash = "sha256-+6id0PVfpiVjee7O4ZoskNK0dz5ZmTYRTtum3B3tIgE=";
};
configurePhase = ''
# doesn't happen automatically
export MAKEFLAGS=-j$NIX_BUILD_CORES
'';
build-system = [
cmake
scikit-build
setuptools
];
dontUseCmakeConfigure = true;
dependencies = [ numpy ];
nativeCheckInputs = [
future
pytest-lazy-fixture
pytestCheckHook
];
pythonImportsCheck = [ "parselmouth" ];
meta = {
description = "Praat in Python, the Pythonic way";
homepage = "https://github.com/YannickJadoul/Parselmouth";
changelog = "https://github.com/YannickJadoul/Parselmouth/releases/tag/v${version}";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ derdennisop ];
};
}

View File

@ -9659,6 +9659,8 @@ self: super: with self; {
parsel = callPackage ../development/python-modules/parsel { };
parselmouth = callPackage ../development/python-modules/parselmouth { };
parse-type = callPackage ../development/python-modules/parse-type { };
parsimonious = callPackage ../development/python-modules/parsimonious { };