Skip to content

Commit

Permalink
python312Packages.jianpu-ly: init at 1.801
Browse files Browse the repository at this point in the history
  • Loading branch information
ifurther committed Aug 13, 2024
1 parent ab23487 commit ff0cde3
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/development/python-modules/jianpu-ly/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6285,6 +6285,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 { };
Expand Down

0 comments on commit ff0cde3

Please sign in to comment.