pythonPackages.rtmidi-python: init at 0.2.2
This commit is contained in:
parent
ec71e489c8
commit
75f5c4381c
2 changed files with 31 additions and 0 deletions
29
pkgs/development/python-modules/rtmidi-python/default.nix
Normal file
29
pkgs/development/python-modules/rtmidi-python/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib, buildPythonPackage, fetchPypi
|
||||
, alsaLib
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rtmidi-python";
|
||||
version = "0.2.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1wpcaxfpbmsjc78g8841kpixr0a3v6zn0ak058s3mm25kcysp4m0";
|
||||
};
|
||||
|
||||
buildInputs = [ alsaLib ];
|
||||
|
||||
# package has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"rtmidi_python"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python wrapper for RtMidi";
|
||||
homepage = "https://github.com/superquadratic/rtmidi-python";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
|
@ -1480,6 +1480,8 @@ in {
|
|||
|
||||
rq = callPackage ../development/python-modules/rq { };
|
||||
|
||||
rtmidi-python = callPackage ../development/python-modules/rtmidi-python { };
|
||||
|
||||
rx = callPackage ../development/python-modules/rx { };
|
||||
|
||||
sabyenc = callPackage ../development/python-modules/sabyenc { };
|
||||
|
|
Loading…
Reference in a new issue