mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-04 01:42:53 +03:00
pythonPackages.python-rtmidi: init at 1.4.1
This commit is contained in:
parent
29eb525875
commit
ec71e489c8
27
pkgs/development/python-modules/python-rtmidi/default.nix
Normal file
27
pkgs/development/python-modules/python-rtmidi/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, isPy27
|
||||
, tox, flake8, alabaster
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-rtmidi";
|
||||
version = "1.4.1";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0b0y3hnjl2fvm3jyfvp1msfikp19vbqqqi7lawgy3azisvdyrgq7";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
tox
|
||||
flake8
|
||||
alabaster
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Python binding for the RtMidi C++ library implemented using Cython";
|
||||
homepage = "https://chrisarndt.de/projects/python-rtmidi/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
@ -1424,6 +1424,8 @@ in {
|
||||
|
||||
python-redis-lock = callPackage ../development/python-modules/python-redis-lock { };
|
||||
|
||||
python-rtmidi = callPackage ../development/python-modules/python-rtmidi { };
|
||||
|
||||
python-sql = callPackage ../development/python-modules/python-sql { };
|
||||
|
||||
python-snappy = callPackage ../development/python-modules/python-snappy {
|
||||
|
Loading…
Reference in New Issue
Block a user