Merge pull request #205206 from fabaff/pyrisco-bump
python310Packages.pyrisco: 0.5.6 -> 0.5.7
This commit is contained in:
commit
f461e14f0b
1 changed files with 9 additions and 4 deletions
|
@ -7,21 +7,26 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyrisco";
|
pname = "pyrisco";
|
||||||
version = "0.5.6";
|
version = "0.5.7";
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "OnFreund";
|
owner = "OnFreund";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-jhThPU4wlujZVC9v/8JSRFxC0LlJedFevOENdRHidV8=";
|
hash = "sha256-ySFHB+PZmjsqKJQrfFoupylowsOiV5B2feHX7nF8dUA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ aiohttp ];
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
# Project has no tests
|
# Project has no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
pythonImportsCheck = [ "pyrisco" ];
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"pyrisco"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python interface to Risco alarm systems through Risco Cloud";
|
description = "Python interface to Risco alarm systems through Risco Cloud";
|
||||||
|
|
Loading…
Reference in a new issue