Unverified Commit 8a5be833 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python3Packages.enocean: remove enum-compat (#382155)

parents 7dec5f26 b5c3315a
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -3,10 +3,15 @@
  buildPythonPackage,
  fetchFromGitHub,
  fetchpatch2,

  # build-system
  setuptools,

  # dependencies
  beautifulsoup4,
  enum-compat,
  pyserial,

  # tests
  pytestCheckHook,
}:

@@ -32,9 +37,10 @@ buildPythonPackage rec {

  build-system = [ setuptools ];

  pythonRemoveDeps = [ "enum-compat" ];

  dependencies = [
    beautifulsoup4
    enum-compat
    pyserial
  ];