lol

python3Packages.zephyr-python-api: modernize code

Update the python recipe to the new nixpkgs standard.

+3 -3
+3 -3
pkgs/development/python-modules/zephyr-python-api/default.nix
··· 9 9 buildPythonPackage rec { 10 10 pname = "zephyr-python-api"; 11 11 version = "0.1.0"; 12 - format = "pyproject"; 12 + pyproject = true; 13 13 14 14 src = fetchPypi { 15 15 pname = "zephyr_python_api"; ··· 17 17 hash = "sha256-YupGiybfhwb+I4ofr6RNBzS6LQfx5BQD/SU5nYrnqFk="; 18 18 }; 19 19 20 - nativeBuildInputs = [ setuptools ]; 20 + build-system = [ setuptools ]; 21 21 22 - propagatedBuildInputs = [ requests ]; 22 + dependencies = [ requests ]; 23 23 24 24 # No tests in archive 25 25 doCheck = false;