python3Packages.arris-tg2492lg: init at 2.1.0

+45
+43
pkgs/development/python-modules/arris-tg2492lg/default.nix
···
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , pytest-aiohttp 6 + , pytestCheckHook 7 + , pythonOlder 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "arris-tg2492lg"; 12 + version = "2.1.0"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "vanbalken"; 19 + repo = pname; 20 + rev = version; 21 + sha256 = "sha256-C1o9HWWJ/G/7Pp6I0FbRmX2PQvUJx71L9wHRkUMtnL4="; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + aiohttp 26 + ]; 27 + 28 + checkInputs = [ 29 + pytest-aiohttp 30 + pytestCheckHook 31 + ]; 32 + 33 + pythonImportsCheck = [ 34 + "arris_tg2492lg" 35 + ]; 36 + 37 + meta = with lib; { 38 + description = "Library to connect to an Arris TG2492LG"; 39 + homepage = "https://github.com/vanbalken/arris-tg2492lg"; 40 + license = with licenses; [ mit ]; 41 + maintainers = with maintainers; [ fab ]; 42 + }; 43 + }
+2
pkgs/top-level/python-packages.nix
··· 631 632 arrayqueues = callPackage ../development/python-modules/arrayqueues { }; 633 634 arrow = callPackage ../development/python-modules/arrow { }; 635 636 arviz = callPackage ../development/python-modules/arviz { };
··· 631 632 arrayqueues = callPackage ../development/python-modules/arrayqueues { }; 633 634 + arris-tg2492lg = callPackage ../development/python-modules/arris-tg2492lg { }; 635 + 636 arrow = callPackage ../development/python-modules/arrow { }; 637 638 arviz = callPackage ../development/python-modules/arviz { };