Merge pull request #178312 from yurkobb/add-python-oscpy
python310Packages.oscpy: init at 0.6.0
This commit is contained in:
commit
96285ddb64
3 changed files with 32 additions and 0 deletions
|
@ -14062,6 +14062,12 @@
|
|||
githubId = 687198;
|
||||
name = "Yuri Aisaka";
|
||||
};
|
||||
yurkobb = {
|
||||
name = "Yury Bulka";
|
||||
email = "setthemfree@privacyrequired.com";
|
||||
github = "yurkobb";
|
||||
githubId = 479389;
|
||||
};
|
||||
yurrriq = {
|
||||
email = "eric@ericb.me";
|
||||
github = "yurrriq";
|
||||
|
|
24
pkgs/development/python-modules/oscpy/default.nix
Normal file
24
pkgs/development/python-modules/oscpy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue