depot/third_party/nixpkgs/pkgs/development/python-modules/python-ly/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

22 lines
567 B
Nix

{ buildPythonPackage, fetchPypi, lib }:
buildPythonPackage rec {
pname = "python-ly";
version = "0.9.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "d4d2b68eb0ef8073200154247cc9bd91ed7fb2671ac966ef3d2853281c15d7a8";
};
# tests not shipped on `pypi` and
# seem to be broken ATM: https://github.com/wbsoft/python-ly/issues/70
doCheck = false;
meta = with lib; {
description = "Tool and library for manipulating LilyPond files";
license = licenses.gpl2;
maintainers = with maintainers; [ ];
};
}