Files
nixpkgs/pkgs/development/python-modules/python-ly/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

23 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; [ ];
};
}