nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

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

python3Packages.zephyr-python-api: init at 0.0.3

Add Python package zephyr-python-api.

Homepage: https://github.com/nassauwinter/zephyr-python-api

This is a set of wrappers for Zephyr Scale (TM4J) REST API.
This means you can interact with Zephyr Scale without GUI, access it with python
code and create automation scripts for your every day interactions.

+37
+35
pkgs/development/python-modules/zephyr-python-api/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , requests 5 + , setuptools 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "zephyr-python-api"; 10 + version = "0.0.3"; 11 + format = "pyproject"; 12 + 13 + src = fetchPypi { 14 + inherit pname version; 15 + hash = "sha256-M9Kf0RtoSeDFAAgAuks+Ek+Wg5OM8qmd3eDoaAgAa3A="; 16 + }; 17 + 18 + nativeBuildInputs = [ setuptools ]; 19 + 20 + propagatedBuildInputs = [ 21 + requests 22 + ]; 23 + 24 + # No tests in archive 25 + doCheck = false; 26 + 27 + pythonImportsCheck = [ "zephyr" ]; 28 + 29 + meta = { 30 + homepage = "https://github.com/nassauwinter/zephyr-python-api"; 31 + description = "A set of wrappers for Zephyr Scale (TM4J) REST API"; 32 + license = lib.licenses.asl20; 33 + maintainers = with lib.maintainers; [ rapiteanu ]; 34 + }; 35 + }
+2
pkgs/top-level/python-packages.nix
··· 14046 14046 python3 = python; 14047 14047 })).py; 14048 14048 14049 + zephyr-python-api = callPackage ../development/python-modules/zephyr-python-api { }; 14050 + 14049 14051 zeroc-ice = callPackage ../development/python-modules/zeroc-ice { }; 14050 14052 14051 14053 zeroconf = callPackage ../development/python-modules/zeroconf { };