summary refs log tree commit diff
diff options
context:
space:
mode:
authorrnhmjoj <micheleguerinirocco@me.com>2017-05-31 22:00:29 +0200
committerrnhmjoj <micheleguerinirocco@me.com>2017-05-31 22:12:26 +0200
commit7b4acc6626c631645b29e1486e81c5683fa82c7c (patch)
tree6d859dda5345110b2c660897b9bf6be0f69c55a3
parent0cbcb95e1437ecd92592094aeb3f4fc516780c2a (diff)
downloadnixpkgs-7b4acc6626c631645b29e1486e81c5683fa82c7c.tar
nixpkgs-7b4acc6626c631645b29e1486e81c5683fa82c7c.tar.gz
nixpkgs-7b4acc6626c631645b29e1486e81c5683fa82c7c.tar.bz2
nixpkgs-7b4acc6626c631645b29e1486e81c5683fa82c7c.tar.lz
nixpkgs-7b4acc6626c631645b29e1486e81c5683fa82c7c.tar.xz
nixpkgs-7b4acc6626c631645b29e1486e81c5683fa82c7c.tar.zst
nixpkgs-7b4acc6626c631645b29e1486e81c5683fa82c7c.zip
pythonPackages.hidapi: 0.7.99.post15 -> 0.7.99.post20
-rw-r--r--pkgs/development/python-modules/hidapi/default.nix30
-rw-r--r--pkgs/top-level/python-packages.nix28
2 files changed, 32 insertions, 26 deletions
diff --git a/pkgs/development/python-modules/hidapi/default.nix b/pkgs/development/python-modules/hidapi/default.nix
new file mode 100644
index 00000000000..697bc1cd0e3
--- /dev/null
+++ b/pkgs/development/python-modules/hidapi/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, libusb1, udev, fetchPypi, buildPythonPackage, cython }:
+
+buildPythonPackage rec {
+  name = "${pname}-${version}";
+  pname = "hidapi";
+  version = "0.7.99.post20";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1k7z5m7xsqy8j4qkjy4pfxdx4hm36ha68vi65z6smvnyg4zgv22z";
+  };
+
+  propagatedBuildInputs = [ libusb1 udev cython ];
+
+  # Fix the USB backend library lookup
+  postPatch = ''
+    libusb=${libusb1.dev}/include/libusb-1.0
+    test -d $libusb || { echo "ERROR: $libusb doesn't exist, please update/fix this build expression."; exit 1; }
+    sed -i -e "s|/usr/include/libusb-1.0|$libusb|" setup.py
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A Cython interface to the hidapi from https://github.com/signal11/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 ];
+  };
+}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index c146ea70b2c..4f6060af235 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -29626,32 +29626,8 @@ EOF
     };
   };
 
-  hidapi = buildPythonPackage rec{
-    version = "0.7.99.post15";
-    name = "hidapi-${version}";
-
-    src = pkgs.fetchurl {
-      url = "mirror://pypi/h/hidapi/${name}.tar.gz";
-      sha256 = "09wlr1d7mx80974bsq62j4pk80234jgl7ip4br0y43q6999dpcr0";
-    };
-
-    propagatedBuildInputs = with self; [ pkgs.libusb1 pkgs.udev cython ];
-
-    # Fix the USB backend library lookup
-    postPatch = ''
-      libusb=${pkgs.libusb1.dev}/include/libusb-1.0
-      test -d $libusb || { echo "ERROR: $libusb doesn't exist, please update/fix this build expression."; exit 1; }
-      sed -i -e "s|/usr/include/libusb-1.0|$libusb|" setup.py
-    '';
-
-    meta = {
-      description = "A Cython interface to the hidapi from https://github.com/signal11/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 ];
-    };
+  hidapi = callPackage ../development/python-modules/hidapi {
+    inherit (pkgs) udev libusb1;
   };
 
   mnemonic = callPackage ../development/python-modules/mnemonic.nix { };