Unverified Commit 2d4649ef authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.async-upnp-client: don't depend on async-timeout (#451195)

parents d4be5b73 98e848c0
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -9,7 +9,6 @@

  # dependencies
  aiohttp,
  async-timeout,
  defusedxml,
  python-didl-lite,
  voluptuous,
@@ -33,15 +32,18 @@ buildPythonPackage rec {
  };

  pythonRelaxDeps = [
    "async-timeout"
    "defusedxml"
  ];

  pythonRemoveDeps = [
    # https://github.com/StevenLooman/async_upnp_client/pull/278
    "async-timeout"
  ];

  build-system = [ setuptools ];

  dependencies = [
    aiohttp
    async-timeout
    defusedxml
    python-didl-lite
    voluptuous