python312Packages.jianpu-ly: init at 1.801 (#328894)

This commit is contained in:
Sandro 2024-11-22 14:32:20 +01:00 committed by GitHub
commit 489a187705
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
lilypond,
}:
buildPythonPackage rec {
pname = "jianpu-ly";
version = "1.801";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "jianpu_ly";
hash = "sha256-piK9Ym94cKdaHGz/ogX7ylyAF1ww0jCdRXnHN6lu2MI=";
};
dependencies = [ lilypond ];
build-system = [ setuptools ];
pythonImportsCheck = [ "jianpu_ly" ];
# no tests in shipped with upstream
doCheck = false;
meta = {
homepage = "https://ssb22.user.srcf.net/mwrhome/jianpu-ly.html";
description = "Assists with printing jianpu";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ifurther ];
};
}

View File

@ -6549,6 +6549,8 @@ self: super: with self; {
jenkins-job-builder = callPackage ../development/python-modules/jenkins-job-builder { };
jianpu-ly = callPackage ../development/python-modules/jianpu-ly { };
jieba = callPackage ../development/python-modules/jieba { };
jinja2 = callPackage ../development/python-modules/jinja2 { };