lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.pyruckus: init at 0.14

+38
+36
pkgs/development/python-modules/pyruckus/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pexpect 5 + , python-slugify 6 + , pythonOlder 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "pyruckus"; 11 + version = "0.14"; 12 + disabled = pythonOlder "3.6"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "gabe565"; 16 + repo = pname; 17 + rev = version; 18 + sha256 = "069asvx7g2gywpmid0cbf84mlzhgha4yqd47y09syz09zgv34a36"; 19 + }; 20 + 21 + propagatedBuildInputs = [ 22 + pexpect 23 + python-slugify 24 + ]; 25 + 26 + # Tests requires network features 27 + doCheck = false; 28 + pythonImportsCheck = [ "pyruckus" ]; 29 + 30 + meta = with lib; { 31 + description = "Python client for Ruckus Unleashed"; 32 + homepage = "https://github.com/gabe565/pyruckus"; 33 + license = with licenses; [ mit ]; 34 + maintainers = with maintainers; [ fab ]; 35 + }; 36 + }
+2
pkgs/top-level/python-packages.nix
··· 6273 6273 6274 6274 pyrtlsdr = callPackage ../development/python-modules/pyrtlsdr { }; 6275 6275 6276 + pyruckus = callPackage ../development/python-modules/pyruckus { }; 6277 + 6276 6278 pysam = callPackage ../development/python-modules/pysam { }; 6277 6279 6278 6280 pysaml2 = callPackage ../development/python-modules/pysaml2 {