Unverified Commit 5a8428c6 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python311Packages.wled: 0.16.0 -> 0.17.0

parent 9f6e5994
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"
  ];