summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-osc
diff options
context:
space:
mode:
authoranirrudh <anik597@gmail.com>2021-09-23 22:13:12 -0400
committeranirrudh <anik597@gmail.com>2021-09-24 11:07:36 -0400
commit3cfee020814ceaa8a5a5a5ba2de87efcae62c2db (patch)
tree76c63a64fb8744610c04fb03526239a39d4a6df7 /pkgs/development/python-modules/python-osc
parent08b2a9c91f77ab7d58e9e301ee3e857fb8dd9362 (diff)
pythonPackages.python-osc: init at 1.7.7
fixed dep fixed maintainer
Diffstat (limited to 'pkgs/development/python-modules/python-osc')
-rw-r--r--pkgs/development/python-modules/python-osc/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-osc/default.nix b/pkgs/development/python-modules/python-osc/default.nix
new file mode 100644
index 000000000000..5f060fd9b9e4
--- /dev/null
+++ b/pkgs/development/python-modules/python-osc/default.nix
@@ -0,0 +1,23 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+ pname = "python-osc";
+ version = "1.7.7";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "4c7d68a7719d9425ab2a4ee9a2b9d5a9f5b66593fb46e20e38f91e1452bea2d2";
+ };
+
+ 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 ];
+ };
+}