diff options
Diffstat (limited to 'pkgs/development/python-modules/libusb1/default.nix')
-rw-r--r-- | pkgs/development/python-modules/libusb1/default.nix | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/libusb1/default.nix b/pkgs/development/python-modules/libusb1/default.nix index b61b78a86321..0304dd09677e 100644 --- a/pkgs/development/python-modules/libusb1/default.nix +++ b/pkgs/development/python-modules/libusb1/default.nix @@ -1,4 +1,11 @@ -{ lib, stdenv, buildPythonPackage, fetchPypi, libusb1, pytestCheckHook }: +{ + lib, + stdenv, + buildPythonPackage, + fetchPypi, + libusb1, + pytestCheckHook, +}: buildPythonPackage rec { pname = "libusb1"; @@ -20,14 +27,15 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - pytestFlagsArray = [ - "usb1/testUSB1.py" - ]; + pytestFlagsArray = [ "usb1/testUSB1.py" ]; meta = with lib; { - homepage = "https://github.com/vpelletier/python-libusb1"; + homepage = "https://github.com/vpelletier/python-libusb1"; description = "Python ctype-based wrapper around libusb1"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ prusnak rnhmjoj ]; + license = licenses.lgpl2Plus; + maintainers = with maintainers; [ + prusnak + rnhmjoj + ]; }; } |