pythonPackages.python-osc: init at 1.7.7

fixed dep

fixed maintainer
This commit is contained in:
anirrudh
2021-09-24 11:07:36 -04:00
parent 08b2a9c91f
commit 3cfee02081
2 changed files with 25 additions and 0 deletions
@@ -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 ];
};
}
+2
View File
@@ -7369,6 +7369,8 @@ in {
python_openzwave = callPackage ../development/python-modules/python_openzwave { };
python-osc = callPackage ../development/python-modules/python-osc { };
python-packer = callPackage ../development/python-modules/python-packer { };
python-pam = callPackage ../development/python-modules/python-pam {