nhost-cli: 1.28.2 -> 1.28.3 (#372273)
[NixPkgs.git] / pkgs / development / python-modules / hid / default.nix
blobf8d0535409a59780cb841b0139d3e147ceb877e0
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   hidapi,
7 }:
9 buildPythonPackage rec {
10   pname = "hid";
11   version = "1.0.6";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-SNdk166XRroSO5bb9FeJPKgCaLd5HEsdLgUTEO64OGA=";
17   };
19   postPatch = ''
20     hidapi=${hidapi}/lib/
21     test -d $hidapi || { echo "ERROR: $hidapi doesn't exist, please update/fix this build expression."; exit 1; }
22     sed -i -e "s|libhidapi|$hidapi/libhidapi|" hid/__init__.py
23   '';
25   build-system = [ setuptools ];
27   dependencies = [ hidapi ];
29   doCheck = false; # no tests
31   pythonImportsCheck = [ "hid" ];
33   meta = with lib; {
34     description = "hidapi bindings in ctypes";
35     homepage = "https://github.com/apmorton/pyhidapi";
36     license = with licenses; [ mit ];
37     maintainers = with maintainers; [ ];
38   };