From b9222f51583f0553229d37ad0aeee1f7822ef656 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 28 Oct 2020 14:53:59 +0100 Subject: [PATCH] python3Packages.hidapi: 0.9.0.post3 -> 0.10.0 --- pkgs/development/python-modules/hidapi/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/hidapi/default.nix b/pkgs/development/python-modules/hidapi/default.nix index 9e9e965d336..df9ac9ebed6 100644 --- a/pkgs/development/python-modules/hidapi/default.nix +++ b/pkgs/development/python-modules/hidapi/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "hidapi"; - version = "0.9.0.post3"; + version = "0.10.0"; src = fetchPypi { inherit pname version; - sha256 = "5a2442928f17ba742d9c53073f48b152051c5747d758d2fefd937543da5ab2e5"; + sha256 = "2560ad8db212f54cf40ea8d78715adad7df803011cfdce9dabbac0e76acf31ef"; }; propagatedBuildInputs = @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hid" ]; meta = with stdenv.lib; { - description = "A Cython interface to the hidapi from https://github.com/signal11/hidapi"; + description = "A Cython interface to the hidapi from https://github.com/libusb/hidapi"; homepage = "https://github.com/trezor/cython-hidapi"; # license can actually be either bsd3 or gpl3 # see https://github.com/trezor/cython-hidapi/blob/master/LICENSE-orig.txt license = licenses.bsd3; - maintainers = with maintainers; [ np ]; + maintainers = with maintainers; [ np prusnak ]; }; }