1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 requests, 6 setuptools, 7}: 8 9buildPythonPackage rec { 10 pname = "zephyr-python-api"; 11 version = "0.1.0"; 12 pyproject = true; 13 14 src = fetchPypi { 15 pname = "zephyr_python_api"; 16 inherit version; 17 hash = "sha256-YupGiybfhwb+I4ofr6RNBzS6LQfx5BQD/SU5nYrnqFk="; 18 }; 19 20 build-system = [ setuptools ]; 21 22 dependencies = [ requests ]; 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 = "Set of wrappers for Zephyr Scale (TM4J) REST API"; 32 license = lib.licenses.asl20; 33 maintainers = with lib.maintainers; [ rapiteanu ]; 34 }; 35}