Commit b5c3315a authored by Benjamin Sparks's avatar Benjamin Sparks
Browse files

python3Packages.enocean: remove enum-compat

parent a24ab16d
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
  ];