mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
f7300dc4da
Diff: https://github.com/iloveicedgreentea/py-madvr/compare/refs/tags/1.6.32...v1.6.33 Changelog: https://github.com/iloveicedgreentea/py-madvr/releases/tag/v1.6.33
39 lines
861 B
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 ];
|
|
};
|
|
}
|