Merge pull request #169487 from fabaff/aioqsw
python3Packages.aioqsw: init at 0.0.5
This commit is contained in:
commit
22b240a21c
40
pkgs/development/python-modules/aioqsw/default.nix
Normal file
40
pkgs/development/python-modules/aioqsw/default.nix
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "aioqsw";
|
||||||
|
version = "0.0.5";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Noltari";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-2MuJrWrjcRkdeVkKfv/nUVfHyBtKKsq1sC5ISSEtyEE=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
|
# Module has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"aioqsw"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Library to fetch data from QNAP QSW switches";
|
||||||
|
homepage = "https://github.com/Noltari/aioqsw";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -375,6 +375,8 @@ in {
|
|||||||
|
|
||||||
aiopylgtv = callPackage ../development/python-modules/aiopylgtv { };
|
aiopylgtv = callPackage ../development/python-modules/aiopylgtv { };
|
||||||
|
|
||||||
|
aioqsw = callPackage ../development/python-modules/aioqsw { };
|
||||||
|
|
||||||
aiorecollect = callPackage ../development/python-modules/aiorecollect { };
|
aiorecollect = callPackage ../development/python-modules/aiorecollect { };
|
||||||
|
|
||||||
aioredis = callPackage ../development/python-modules/aioredis { };
|
aioredis = callPackage ../development/python-modules/aioredis { };
|
||||||
|
Loading…
Reference in New Issue
Block a user