diff options
| author | figsoda <figsoda@pm.me> | 2021-09-25 10:04:12 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-25 10:04:12 -0400 |
| commit | 4be93515614857491efe5ec00eba8105b893cce3 (patch) | |
| tree | bc50c27d441880d380ab2d26556e224759413be0 /pkgs/development/python-modules/python-osc/default.nix | |
| parent | bfe8a5cfe64a93f27912c16cbd2b0a2509623260 (diff) | |
| parent | 3cfee020814ceaa8a5a5a5ba2de87efcae62c2db (diff) | |
Merge pull request #139252 from anirrudh/python-osc-nixpkg
pythonPackages.python-osc: init at 1.7.7
Diffstat (limited to 'pkgs/development/python-modules/python-osc/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/python-osc/default.nix | 23 |
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 ]; + }; +} |
