python310Packages.pyinsteon: 1.2.0 -> 1.3.3
https://github.com/pyinsteon/pyinsteon/releases/tag/1.3.0 https://github.com/pyinsteon/pyinsteon/releases/tag/1.3.1 https://github.com/pyinsteon/pyinsteon/releases/tag/1.3.2 https://github.com/pyinsteon/pyinsteon/releases/tag/1.3.3
This commit is contained in:
parent
895a883e2f
commit
7b94126918
1 changed files with 10 additions and 13 deletions
|
@ -7,17 +7,16 @@
|
||||||
, pypubsub
|
, pypubsub
|
||||||
, pyserial
|
, pyserial
|
||||||
, pyserial-asyncio
|
, pyserial-asyncio
|
||||||
, pytest-asyncio
|
|
||||||
, pytest-timeout
|
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, pyyaml
|
, setuptools
|
||||||
|
, voluptuous
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyinsteon";
|
pname = "pyinsteon";
|
||||||
version = "1.2.0";
|
version = "1.3.3";
|
||||||
format = "setuptools";
|
format = "pyproject";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
@ -25,29 +24,27 @@ buildPythonPackage rec {
|
||||||
owner = pname;
|
owner = pname;
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-PMjvic+K/m7beavlZvGhJcizSNCzLPZYLm3P2V9EPLs=";
|
hash = "sha256-zbqgwCukTmvCIXpAvaKQl7voOI4ATqsT9NPUyRhw2EE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
aiofiles
|
aiofiles
|
||||||
aiohttp
|
aiohttp
|
||||||
pypubsub
|
pypubsub
|
||||||
pyserial
|
pyserial
|
||||||
pyserial-asyncio
|
pyserial-asyncio
|
||||||
pyyaml
|
voluptuous
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
async_generator
|
async_generator
|
||||||
pytest-asyncio
|
|
||||||
pytest-timeout
|
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
disabledTests = [
|
|
||||||
"test_results"
|
|
||||||
];
|
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [
|
||||||
"pyinsteon"
|
"pyinsteon"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue