pythonPackages.oscpy: init at 0.6.0

This commit is contained in:
Yury Bulka 2022-06-20 12:39:24 +03:00
parent 6394fadb1d
commit 477578e8e3
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook }:
buildPythonPackage rec {
pname = "oscpy";
version = "0.6.0";
src = fetchFromGitHub {
owner = "kivy";
repo = "oscpy";
rev = "v${version}";
hash = "sha256-Luj36JLgU9xbBMydeobyf98U5zs5VwWQOPGV7TPXQwA=";
};
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "oscpy" ];
meta = with lib; {
description = "A modern implementation of OSC for python2/3";
license = licenses.mit;
homepage = "https://github.com/kivy/oscpy";
maintainers = [ maintainers.yurkobb ];
};
}

View file

@ -6163,6 +6163,8 @@ in {
oscrypto = callPackage ../development/python-modules/oscrypto { };
oscpy = callPackage ../development/python-modules/oscpy { };
oset = callPackage ../development/python-modules/oset { };
osmnx = callPackage ../development/python-modules/osmnx { };