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