Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "python-osc"; 8 version = "1.8.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 hash = "sha256-69a3z4rjhzgPSOnW1zabrRwXahr2YI79eIi1C08OdK0="; 13 }; 14 15 pythonImportsCheck = [ "pythonosc" ]; 16 17 meta = with lib; { 18 description = "Open Sound Control server and client in pure python"; 19 homepage = "https://github.com/attwad/python-osc"; 20 license = licenses.unlicense; 21 maintainers = with maintainers; [ anirrudh ]; 22 }; 23}