summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-02-18 17:16:29 +0100
committerGitHub <noreply@github.com>2022-02-18 17:16:29 +0100
commit013ec9faf70bf7e050cd643e28e970483eeda2ea (patch)
tree9d3133f9a383274dda3ff91d848594220acabe3f /pkgs/development/python-modules
parent2158ae39db1d4c8d820926c26f69240b4f53f3d2 (diff)
parentd394936a3f6caf7e046343817d46e6fc714758c4 (diff)
Merge pull request #160593 from r-ryantm/auto-update/python3.10-pyinsteon
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pyinsteon/default.nix22
1 files changed, 12 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/pyinsteon/default.nix b/pkgs/development/python-modules/pyinsteon/default.nix
index fbf1fbce7931..81beedbfdce4 100644
--- a/pkgs/development/python-modules/pyinsteon/default.nix
+++ b/pkgs/development/python-modules/pyinsteon/default.nix
@@ -1,36 +1,36 @@
{ lib
-, buildPythonPackage
-, fetchFromGitHub
, aiofiles
, aiohttp
, async_generator
+, buildPythonPackage
+, fetchFromGitHub
, pypubsub
, pyserial
, pyserial-asyncio
-, pyyaml
-, pytestCheckHook
-, pythonOlder
-, pytest-cov
, pytest-asyncio
, pytest-timeout
+, pytestCheckHook
+, pythonOlder
+, pyyaml
}:
buildPythonPackage rec {
pname = "pyinsteon";
version = "1.0.15";
+ format = "setuptools";
+
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
- sha256 = "sha256-bR+2885JdGoVHBIZQG8iF0OXsECew7m5N9vopKtGp3I=";
+ hash = "sha256-bR+2885JdGoVHBIZQG8iF0OXsECew7m5N9vopKtGp3I=";
};
propagatedBuildInputs = [
aiofiles
aiohttp
- async_generator
pypubsub
pyserial
pyserial-asyncio
@@ -38,13 +38,15 @@ buildPythonPackage rec {
];
checkInputs = [
+ async_generator
pytest-asyncio
- pytest-cov
pytest-timeout
pytestCheckHook
];
- pythonImportsCheck = [ "pyinsteon" ];
+ pythonImportsCheck = [
+ "pyinsteon"
+ ];
meta = with lib; {
description = "Python library to support Insteon home automation projects";