diff --git a/pkgs/development/python-modules/platformio-core/default.nix b/pkgs/development/python-modules/platformio-core/default.nix index 3084afb83da0d5..e22bc1cb17970d 100644 --- a/pkgs/development/python-modules/platformio-core/default.nix +++ b/pkgs/development/python-modules/platformio-core/default.nix @@ -23,19 +23,18 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "platformio"; repo = "platformio-core"; - rev = "v${version}"; + tag = "v${version}"; hash = "sha256-0wh5jw25d1iiyaa523b6mxywym5p5a77xzi4a27s46wjn140a85v"; fetchSubmodules = true; }; pyproject = true; - +build-system=[setuptools]; nativeBuildInputs = [ - setuptools wheel ]; - propagatedBuildInputs = [ + dependencies = [ bottle click colorama @@ -52,7 +51,7 @@ buildPythonPackage rec { "platformio" ]; - meta = with lib; { + meta = { homepage = "https://github.com/platformio/platformio-core"; description = "Open source ecosystem for IoT development (CLI manager for embedded boards)"; license = lib.licenses.asl20;