Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at gcc-offload 35 lines 692 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6 lilypond, 7}: 8 9buildPythonPackage rec { 10 pname = "jianpu-ly"; 11 version = "1.801"; 12 pyproject = true; 13 14 src = fetchPypi { 15 inherit version; 16 pname = "jianpu_ly"; 17 hash = "sha256-piK9Ym94cKdaHGz/ogX7ylyAF1ww0jCdRXnHN6lu2MI="; 18 }; 19 20 dependencies = [ lilypond ]; 21 22 build-system = [ setuptools ]; 23 24 pythonImportsCheck = [ "jianpu_ly" ]; 25 26 # no tests in shipped with upstream 27 doCheck = false; 28 29 meta = { 30 homepage = "https://ssb22.user.srcf.net/mwrhome/jianpu-ly.html"; 31 description = "Assists with printing jianpu"; 32 license = lib.licenses.asl20; 33 maintainers = with lib.maintainers; [ ifurther ]; 34 }; 35}