Commit 0a4d6516 authored by Robert Schütz's avatar Robert Schütz
Browse files

python312Packages.python-linkplay: run tests

parent b3311f86
Loading
Loading
Loading
Loading
+6 −9
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
  async-timeout,
  async-upnp-client,
  buildPythonPackage,
  fetchPypi,
  fetchFromGitHub,
  lib,
  pytest-asyncio,
  pytestCheckHook,
@@ -15,10 +15,11 @@ buildPythonPackage rec {
  version = "0.0.6";
  pyproject = true;

  src = fetchPypi {
    pname = "python_linkplay";
    inherit version;
    hash = "sha256-mChlhJt2p77KWXWNZztrEA8Z2BmYkPLYPdv9Gw7p5/I=";
  src = fetchFromGitHub {
    owner = "Velleman";
    repo = "python-linkplay";
    rev = "refs/tags/v${version}";
    hash = "sha256-GUpotQLs+xzsMV3i52YtWYm9IoQLyyw8EY9VhG+uT8o=";
  };

  build-system = [ setuptools ];
@@ -36,10 +37,6 @@ buildPythonPackage rec {
    pytestCheckHook
  ];

  # no tests on PyPI, no tags on GitHub
  # https://github.com/Velleman/python-linkplay/issues/23
  doCheck = false;

  meta = {
    description = "Python Library for Seamless LinkPlay Device Control";
    homepage = "https://github.com/Velleman/python-linkplay";