mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
python312Packages.py-madvr2: init at 1.6.29
This commit is contained in:
parent
b2a8cc8d02
commit
e5d572be2b
41
pkgs/development/python-modules/py-madvr2/default.nix
Normal file
41
pkgs/development/python-modules/py-madvr2/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
pytest-asyncio,
|
||||
pytestCheckHook,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "py-madvr2";
|
||||
version = "1.6.29";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "iloveicedgreentea";
|
||||
repo = "py-madvr";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-ibgmUpHSmOr5glSZPIJXTBDlEnQoWtmJzmEGsggQxnk=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
pythonImportsCheck = [ "madvr" ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
# https://github.com/iloveicedgreentea/py-madvr/issues/12
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/iloveicedgreentea/py-madvr/releases/tag/${version}";
|
||||
description = "Control MadVR Envy over IP";
|
||||
homepage = "https://github.com/iloveicedgreentea/py-madvr";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
@ -10922,6 +10922,8 @@ self: super: with self; {
|
||||
|
||||
py-dormakaba-dkey = callPackage ../development/python-modules/py-dormakaba-dkey { };
|
||||
|
||||
py-madvr2 = callPackage ../development/python-modules/py-madvr2 { };
|
||||
|
||||
py-nightscout = callPackage ../development/python-modules/py-nightscout { };
|
||||
|
||||
py-partiql-parser = callPackage ../development/python-modules/py-partiql-parser { };
|
||||
|
Loading…
Reference in New Issue
Block a user