1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "python-osc"; 8 version = "1.8.3"; 9 10 src = fetchPypi { 11 inherit pname version; 12 hash = "sha256-pc4bpWyNgt9Ryz8pRrXdM6cFInkazEuFZOYtKyCtnKo="; 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}