nixpkgs/pkgs/development/python-modules/py-madvr2/default.nix

39 lines
861 B
Nix

{
buildPythonPackage,
fetchFromGitHub,
lib,
pytest-asyncio,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "py-madvr2";
version = "1.6.33";
pyproject = true;
src = fetchFromGitHub {
owner = "iloveicedgreentea";
repo = "py-madvr";
rev = "refs/tags/v${version}";
hash = "sha256-z+PVLz9eApGJ94I/Jp0MyqNpKQwIemk8j+OyqFmIbgI=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "madvr" ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
meta = {
changelog = "https://github.com/iloveicedgreentea/py-madvr/releases/tag/${lib.removePrefix "refs/tags/" src.rev}";
description = "Control MadVR Envy over IP";
homepage = "https://github.com/iloveicedgreentea/py-madvr";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}