nixpkgs/pkgs/development/python-modules/abjad/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.9 KiB
Nix
Raw Normal View History

2023-09-08 20:37:07 +00:00
{
lib,
buildPythonPackage,
fetchPypi,
ply,
roman,
uqbar,
pythonOlder,
pythonAtLeast,
2023-09-08 20:37:07 +00:00
pytestCheckHook,
lilypond,
typing-extensions,
2023-09-08 20:37:07 +00:00
}:
buildPythonPackage rec {
pname = "abjad";
version = "3.19";
format = "setuptools";
# see issue upstream indicating Python 3.12 support will come
# with version 3.20: https://github.com/Abjad/abjad/issues/1574
disabled = pythonOlder "3.10" || pythonAtLeast "3.12";
2023-09-08 20:37:07 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-I9t3ORUKFFlMfXJsAzXhCzl1B4a9/ZNmvSX2/R44TPs=";
};
propagatedBuildInputs = [
ply
roman
uqbar
typing-extensions
2023-09-08 20:37:07 +00:00
];
buildInputs = [ lilypond ];
nativeCheckInputs = [ pytestCheckHook ];
postPatch = ''
substituteInPlace abjad/io.py \
--replace-fail 'lilypond_path = self.get_lilypond_path()' \
2023-09-08 20:37:07 +00:00
'lilypond_path = "${lilypond}/bin/lilypond"'
# general invocations of binary for IO purposes
substituteInPlace abjad/configuration.py \
--replace-fail '["lilypond"' '["${lilypond}/bin/lilypond"'
2023-09-08 20:37:07 +00:00
# get_lilypond_version_string
'';
pythonImportsCheck = [ "abjad" ];
meta = {
description = "GNU LilyPond wrapper for Python";
longDescription = ''
Abjad helps composers build up complex pieces of music notation in
iterative and incremental ways. Use Abjad to create a symbolic
representation of all the notes, rests, chords, tuplets, beams and slurs
in any score. Because Abjad extends the Python programming language, you
can use Abjad to make systematic changes to music as you work. Because
Abjad wraps the LilyPond music notation package, you can use Abjad to
control the typographic detail of symbols on the page.
'';
license = lib.licenses.mit;
homepage = "https://abjad.github.io/";
changelog = "https://abjad.github.io/appendices/changes.html";
maintainers = [ lib.maintainers.davisrichard437 ];
};
}