889482aab3
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
24 lines
581 B
Nix
24 lines
581 B
Nix
{ 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 ];
|
|
};
|
|
}
|