mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 11:33:31 +00:00
36 lines
692 B
Nix
36 lines
692 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|