Merge pull request #139252 from anirrudh/python-osc-nixpkg
pythonPackages.python-osc: init at 1.7.7
This commit is contained in:
commit
4be9351561
@ -736,6 +736,12 @@
|
||||
githubId = 1771266;
|
||||
name = "Vo Anh Duy";
|
||||
};
|
||||
anirrudh = {
|
||||
email = "anik597@gmail.com";
|
||||
github = "anirrudh";
|
||||
githubId = 6091755;
|
||||
name = "Anirrudh Krishnan";
|
||||
};
|
||||
ankhers = {
|
||||
email = "me@ankhers.dev";
|
||||
github = "ankhers";
|
||||
|
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 ];
|
||||
};
|
||||
}
|
@ -7373,6 +7373,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 {
|
||||
|
Loading…
Reference in New Issue
Block a user