nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 40 lines 754 B view raw
1{ lib 2, aiohttp 3, buildPythonPackage 4, fetchFromGitHub 5, pytestCheckHook 6, pythonOlder 7}: 8 9buildPythonPackage rec { 10 pname = "aioqsw"; 11 version = "0.0.8"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.8"; 15 16 src = fetchFromGitHub { 17 owner = "Noltari"; 18 repo = pname; 19 rev = "refs/tags/${version}"; 20 hash = "sha256-FSH7MWtxYdJjCLpit2IhxXUFkGWml6P0SroUJ3iorRw="; 21 }; 22 23 propagatedBuildInputs = [ 24 aiohttp 25 ]; 26 27 # Module has no tests 28 doCheck = false; 29 30 pythonImportsCheck = [ 31 "aioqsw" 32 ]; 33 34 meta = with lib; { 35 description = "Library to fetch data from QNAP QSW switches"; 36 homepage = "https://github.com/Noltari/aioqsw"; 37 license = with licenses; [ asl20 ]; 38 maintainers = with maintainers; [ fab ]; 39 }; 40}