aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/hidapi/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/hidapi/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/hidapi/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/hidapi/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/hidapi/default.nix
index 9e9e965d3368..856a36f77916 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/python-modules/hidapi/default.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/python-modules/hidapi/default.nix
@@ -2,16 +2,16 @@
buildPythonPackage rec {
pname = "hidapi";
- version = "0.9.0.post3";
+ version = "0.10.1";
src = fetchPypi {
inherit pname version;
- sha256 = "5a2442928f17ba742d9c53073f48b152051c5747d758d2fefd937543da5ab2e5";
+ sha256 = "a1170b18050bc57fae3840a51084e8252fd319c0fc6043d68c8501deb0e25846";
};
propagatedBuildInputs =
stdenv.lib.optionals stdenv.isLinux [ libusb1 udev ] ++
- stdenv.lib.optionals stdenv.isDarwin [ darwin.IOKit darwin.apple_sdk.frameworks.CoreFoundation ] ++
+ stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ AppKit CoreFoundation IOKit ]) ++
[ cython ];
# Fix the USB backend library lookup
@@ -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 ];
};
}