depot/third_party/nixpkgs/pkgs/development/python-modules/python-osc/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

23 lines
514 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "python-osc";
version = "1.8.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-69a3z4rjhzgPSOnW1zabrRwXahr2YI79eIi1C08OdK0=";
};
pythonImportsCheck = [ "pythonosc" ];
meta = with lib; {
description = "Open Sound Control server and client in pure python";
homepage = "https://github.com/attwad/python-osc";
license = licenses.unlicense;
maintainers = with maintainers; [ anirrudh ];
};
}