python3Packages.hidapi: 0.9.0.post3 -> 0.10.0

This commit is contained in:
Pavol Rusnak 2020-10-28 14:53:59 +01:00 committed by Frederik Rietdijk
parent cbe6c27d22
commit b9222f5158

@ -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 ];
};
}