mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
python310Packages.plugwise: remove stale description
This commit is contained in:
parent
045217b848
commit
129d4dd6cd
1 changed files with 6 additions and 10 deletions
|
@ -13,6 +13,7 @@
|
|||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
, python-dateutil
|
||||
, pythonOlder
|
||||
, pytz
|
||||
, semver
|
||||
}:
|
||||
|
@ -22,6 +23,8 @@ buildPythonPackage rec {
|
|||
version = "0.18.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = "python-plugwise";
|
||||
|
@ -29,11 +32,6 @@ buildPythonPackage rec {
|
|||
sha256 = "sha256-kpEs5LvUz61Wm2IUI6sNXx2R+vtuHq1Y6aaj+zLrr+Q=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "aiohttp==3.8.0" "aiohttp>=3.8.0"
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
async-timeout
|
||||
|
@ -54,16 +52,14 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "plugwise" ];
|
||||
pythonImportsCheck = [
|
||||
"plugwise"
|
||||
];
|
||||
|
||||
__darwinAllowLocalNetworking = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module for Plugwise Smiles, Stretch and USB stick";
|
||||
longDescription = ''
|
||||
XKNX is an asynchronous Python library for reading and writing KNX/IP
|
||||
packets. It provides support for KNX/IP routing and tunneling devices.
|
||||
'';
|
||||
homepage = "https://github.com/plugwise/python-plugwise";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
|
|
Loading…
Reference in a new issue