pylibftdi: remove httpserver dependency

httpserver is only used in an example, and prevents python2 builds
from working.
This commit is contained in:
Matt Huszagh 2020-05-02 10:34:03 -07:00
parent 81916c7444
commit 495ac69605

View File

@ -1,7 +1,6 @@
{ lib
, buildPythonPackage
, fetchPypi
, httpserver
, libftdi1
, libusb1
}:
@ -16,7 +15,6 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
httpserver
libftdi1
libusb1
];