pythonPackages.oscpy: init at 0.6.0
This commit is contained in:
parent
6394fadb1d
commit
477578e8e3
2 changed files with 26 additions and 0 deletions
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