python3Packages.plugwise: 0.9.3 -> 0.9.4
This commit is contained in:
parent
c9fb926b3d
commit
a8a2a2362b
|
@ -1,31 +1,31 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
|
||||||
, fetchFromGitHub
|
|
||||||
, aiohttp
|
, aiohttp
|
||||||
, async-timeout
|
, async-timeout
|
||||||
|
, buildPythonPackage
|
||||||
, crcmod
|
, crcmod
|
||||||
, defusedxml
|
, defusedxml
|
||||||
, pyserial
|
, fetchFromGitHub
|
||||||
, pytz
|
|
||||||
, python-dateutil
|
|
||||||
, semver
|
|
||||||
, jsonpickle
|
, jsonpickle
|
||||||
|
, munch
|
||||||
, mypy
|
, mypy
|
||||||
|
, pyserial
|
||||||
, pytest-aiohttp
|
, pytest-aiohttp
|
||||||
, pytest-asyncio
|
, pytest-asyncio
|
||||||
, pytest-cov
|
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, python-dateutil
|
||||||
|
, pytz
|
||||||
|
, semver
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "plugwise";
|
pname = "plugwise";
|
||||||
version = "0.9.3";
|
version = "0.9.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = pname;
|
owner = pname;
|
||||||
repo = "python-plugwise";
|
repo = "python-plugwise";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-MZ4R55vGUyWmR0Md83eNerzsgtYMch1vfQ3sqbm12bM=";
|
sha256 = "sha256-5r+Xe3EKLjuR7mPGEPOKzhE7G6OzNEClf847Px9VdWU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -33,9 +33,10 @@ buildPythonPackage rec {
|
||||||
async-timeout
|
async-timeout
|
||||||
crcmod
|
crcmod
|
||||||
defusedxml
|
defusedxml
|
||||||
|
munch
|
||||||
pyserial
|
pyserial
|
||||||
pytz
|
|
||||||
python-dateutil
|
python-dateutil
|
||||||
|
pytz
|
||||||
semver
|
semver
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -44,8 +45,6 @@ buildPythonPackage rec {
|
||||||
mypy
|
mypy
|
||||||
pytest-aiohttp
|
pytest-aiohttp
|
||||||
pytest-asyncio
|
pytest-asyncio
|
||||||
pytest-cov
|
|
||||||
pytest-asyncio
|
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue