mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-21 08:01:31 +00:00
pythonPackages.python-osc: init at 1.7.7
fixed dep fixed maintainer
This commit is contained in:
23
pkgs/development/python-modules/python-osc/default.nix
Normal file
23
pkgs/development/python-modules/python-osc/default.nix
Normal file
@@ -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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user