Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / binho-host-adapter / default.nix
blob51b9d9908a12bd80c1189891e45ab382177e745f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pyserial
5 }:
7 buildPythonPackage rec {
8   pname = "binho-host-adapter";
9   version = "0.1.6";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "0mp8xa1qwaww2k5g2nqg7mcivzsbfw2ny1l9yjsi73109slafv8y";
15   };
17   propagatedBuildInputs = [ pyserial ];
19   # Project has no tests
20   doCheck = false;
21   pythonImportsCheck = [ "binhoHostAdapter" ];
23   meta = with lib; {
24     description = "Python library for Binho Multi-Protocol USB Host Adapters";
25     homepage = "https://github.com/adafruit/Adafruit_Python_PlatformDetect";
26     license = with licenses; [ mit ];
27     maintainers = with maintainers; [ fab ];
28   };