python3Packages.hidapi: 0.9.0.post3 -> 0.10.0

authored by Pavol Rusnak and committed by Frederik Rietdijk b9222f51 cbe6c27d

+4 -4
+4 -4
pkgs/development/python-modules/hidapi/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "hidapi"; 5 - version = "0.9.0.post3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "5a2442928f17ba742d9c53073f48b152051c5747d758d2fefd937543da5ab2e5"; 10 }; 11 12 propagatedBuildInputs = ··· 26 pythonImportsCheck = [ "hid" ]; 27 28 meta = with stdenv.lib; { 29 - description = "A Cython interface to the hidapi from https://github.com/signal11/hidapi"; 30 homepage = "https://github.com/trezor/cython-hidapi"; 31 # license can actually be either bsd3 or gpl3 32 # see https://github.com/trezor/cython-hidapi/blob/master/LICENSE-orig.txt 33 license = licenses.bsd3; 34 - maintainers = with maintainers; [ np ]; 35 }; 36 }
··· 2 3 buildPythonPackage rec { 4 pname = "hidapi"; 5 + version = "0.10.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "2560ad8db212f54cf40ea8d78715adad7df803011cfdce9dabbac0e76acf31ef"; 10 }; 11 12 propagatedBuildInputs = ··· 26 pythonImportsCheck = [ "hid" ]; 27 28 meta = with stdenv.lib; { 29 + description = "A Cython interface to the hidapi from https://github.com/libusb/hidapi"; 30 homepage = "https://github.com/trezor/cython-hidapi"; 31 # license can actually be either bsd3 or gpl3 32 # see https://github.com/trezor/cython-hidapi/blob/master/LICENSE-orig.txt 33 license = licenses.bsd3; 34 + maintainers = with maintainers; [ np prusnak ]; 35 }; 36 }