depot/third_party/nixpkgs/pkgs/development/python-modules/oscpy/default.nix
Default email 889482aab3 Project import generated by Copybara.
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
2022-06-26 12:26:21 +02:00

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 ];
};
}