File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
pkgs/development/python-modules/phonemizer Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 1010 dlinfo ,
1111 typing-extensions ,
1212 espeak-ng ,
13+ setuptools ,
14+ pytest ,
1315} :
1416
1517buildPythonPackage rec {
1618 pname = "phonemizer" ;
1719 version = "3.3.0" ;
18- format = "setuptools" ;
20+ pyproject = true ;
21+
22+ build-system = [ setuptools ] ;
1923
2024 src = fetchPypi {
2125 inherit pname version ;
2226 hash = "sha256-Xgw4Ei7/4LMxok5nSv8laHTs4WnXCpzxEgM3tW+OPQw=" ;
2327 } ;
2428
25- postPatch = ''
26- sed -i '/pytest-runner/d' setup.py
27- '' ;
28-
2929 patches = [
3030 ( substituteAll {
3131 src = ./backend-paths.patch ;
@@ -46,12 +46,12 @@ buildPythonPackage rec {
4646 # so let's disable related tests.
4747 doCheck = false ;
4848
49- meta = with lib ; {
49+ meta = {
5050 homepage = "https://github.com/bootphon/phonemizer" ;
5151 changelog = "https://github.com/bootphon/phonemizer/blob/v${ version } /CHANGELOG.md" ;
5252 description = "Simple text to phones converter for multiple languages" ;
5353 mainProgram = "phonemize" ;
54- license = licenses . gpl3Plus ;
55- maintainers = [ ] ;
54+ license = lib . licenses . gpl3Plus ;
55+ maintainers = with lib . maintainers ; [ bot-wxt1221 ] ;
5656 } ;
5757}
You can’t perform that action at this time.
0 commit comments