blob: 00d1d7e3e34dadb7c1e5c769ffb6c9f464f7d77c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
lilypond,
}:
buildPythonPackage rec {
pname = "jianpu-ly";
version = "1.865";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "jianpu_ly";
hash = "sha256-fW4qoaDrOZL+oKRPWIZbvuZSOCsrWDw0QsO4r6SJB/Y=";
};
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";
changelog = "https://github.com/ssb22/jianpu-ly/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ifurther ];
};
}
|