nixpkgs/pkgs/development/python-modules/mido/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

75 lines
1.3 KiB
Nix

{
stdenv,
lib,
buildPythonPackage,
fetchPypi,
substituteAll,
# build-system
setuptools,
setuptools-scm,
# dependencies
packaging,
# native dependencies
portmidi,
# optional-dependencies
pygame,
python-rtmidi,
rtmidi-python,
# tests
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "mido";
version = "1.3.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Ouootu1zD3N9WxLaNXjevp3FAFj6Nw/pzt7ZGJtnw0g=";
};
patches = [
(substituteAll {
src = ./libportmidi-cdll.patch;
libportmidi = "${portmidi.out}/lib/libportmidi${stdenv.hostPlatform.extensions.sharedLibrary}";
})
];
build-system = [
setuptools
setuptools-scm
];
pythonRelaxDeps = [ "packaging" ];
dependencies = [ packaging ];
optional-dependencies = {
ports-pygame = [ pygame ];
ports-rtmidi = [ python-rtmidi ];
ports-rtmidi-python = [ rtmidi-python ];
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "mido" ];
meta = with lib; {
description = "MIDI Objects for Python";
homepage = "https://mido.readthedocs.io";
changelog = "https://github.com/mido/mido/releases/tag/${version}";
license = licenses.mit;
maintainers = [ ];
};
}