Unverified Commit 1e10dff0 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #262380 from mweinelt/wled-0.17.0

python311Packages.wled: 0.16.0 -> 0.17.0
parents d33c4b3b 5a8428c6
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -15,18 +15,25 @@

buildPythonPackage rec {
  pname = "wled";
  version = "0.16.0";
  version = "0.17.0";
  format = "pyproject";

  disabled = pythonOlder "3.8";
  disabled = pythonOlder "3.11";

  src = fetchFromGitHub {
    owner = "frenck";
    repo = "python-wled";
    rev = "refs/tags/v${version}";
    hash = "sha256-esINtvctvgl8AqNwCDVnGU+3j/UzEHqY8H1Rws1kQfs=";
    hash = "sha256-y32zynkVsn5vWw+BZ6ZRf9zemGOWJMN4yfNQZ0bRpos=";
  };

  postPatch = ''
    # Upstream doesn't set a version for the pyproject.toml
    substituteInPlace pyproject.toml \
      --replace "0.0.0" "${version}" \
      --replace "--cov" ""
  '';

  nativeBuildInputs = [
    poetry-core
  ];
@@ -45,13 +52,6 @@ buildPythonPackage rec {
    pytestCheckHook
  ];

  postPatch = ''
    # Upstream doesn't set a version for the pyproject.toml
    substituteInPlace pyproject.toml \
      --replace "0.0.0" "${version}" \
      --replace "--cov" ""
  '';

  pythonImportsCheck = [
    "wled"
  ];