Skip to content

Commit e29b27f

Browse files
authored
python3Packages.zephyr-python-api: modernize code (#363928)
2 parents 11f4f69 + f806859 commit e29b27f

File tree

1 file changed

+3
-3
lines changed
  • pkgs/development/python-modules/zephyr-python-api

1 file changed

+3
-3
lines changed

pkgs/development/python-modules/zephyr-python-api/default.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@
99
buildPythonPackage rec {
1010
pname = "zephyr-python-api";
1111
version = "0.1.0";
12-
format = "pyproject";
12+
pyproject = true;
1313

1414
src = fetchPypi {
1515
pname = "zephyr_python_api";
1616
inherit version;
1717
hash = "sha256-YupGiybfhwb+I4ofr6RNBzS6LQfx5BQD/SU5nYrnqFk=";
1818
};
1919

20-
nativeBuildInputs = [ setuptools ];
20+
build-system = [ setuptools ];
2121

22-
propagatedBuildInputs = [ requests ];
22+
dependencies = [ requests ];
2323

2424
# No tests in archive
2525
doCheck = false;

0 commit comments

Comments
 (0)