python3Packages.pyliblo3: init at 0.16.3
This is a fork of pyliblo which has been unmaintained for 1 years. It is reputable as Debian packages it and has support from at least raysession.
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
python,
|
||||
liblo,
|
||||
cython,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyliblo3";
|
||||
version = "0.16.3";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gesellkammer";
|
||||
repo = "pyliblo3";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-QfwZXkUT4U2Gfbv3rk0F/bze9hwJGn7H8t0X1SWqIuc=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
cython
|
||||
];
|
||||
|
||||
buildInputs = [ liblo ];
|
||||
|
||||
pythonImportsCheck = [ "pyliblo3" ];
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
${python.interpreter} ./test/unit.py
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/gesellkammer/pyliblo3/";
|
||||
description = "Python wrapper for the liblo OSC library";
|
||||
changelog = "https://github.com/gesellkammer/pyliblo3/blob/${src.tag}/NEWS";
|
||||
license = lib.licenses.lgpl21Plus;
|
||||
maintainers = [ lib.maintainers.archercatneo ];
|
||||
};
|
||||
}
|
||||
@@ -12917,6 +12917,8 @@ self: super: with self; {
|
||||
|
||||
pyliblo = callPackage ../development/python-modules/pyliblo { };
|
||||
|
||||
pyliblo3 = callPackage ../development/python-modules/pyliblo3 { };
|
||||
|
||||
pylibmc = callPackage ../development/python-modules/pylibmc { };
|
||||
|
||||
pylibrespot-java = callPackage ../development/python-modules/pylibrespot-java { };
|
||||
|
||||
Reference in New Issue
Block a user