lol

pythonPackages.python-rtmidi: init at 1.4.1

authored by

Martin Weinelt and committed by
Jon
ec71e489 29eb5258

+29
+27
pkgs/development/python-modules/python-rtmidi/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, isPy27 2 + , tox, flake8, alabaster 3 + }: 4 + 5 + buildPythonPackage rec { 6 + pname = "python-rtmidi"; 7 + version = "1.4.1"; 8 + disabled = isPy27; 9 + 10 + src = fetchPypi { 11 + inherit pname version; 12 + sha256 = "0b0y3hnjl2fvm3jyfvp1msfikp19vbqqqi7lawgy3azisvdyrgq7"; 13 + }; 14 + 15 + checkInputs = [ 16 + tox 17 + flake8 18 + alabaster 19 + ]; 20 + 21 + meta = with lib; { 22 + description = "A Python binding for the RtMidi C++ library implemented using Cython"; 23 + homepage = "https://chrisarndt.de/projects/python-rtmidi/"; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ hexa ]; 26 + }; 27 + }
+2
pkgs/top-level/python-packages.nix
··· 1424 1424 1425 1425 python-redis-lock = callPackage ../development/python-modules/python-redis-lock { }; 1426 1426 1427 + python-rtmidi = callPackage ../development/python-modules/python-rtmidi { }; 1428 + 1427 1429 python-sql = callPackage ../development/python-modules/python-sql { }; 1428 1430 1429 1431 python-snappy = callPackage ../development/python-modules/python-snappy {