python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / adafruit-ampy / default.nix
blob4a9a5866c6ecca947e9739098be13b92d12449ce
1 { lib, python3 }:
3 with python3.pkgs;
5 buildPythonApplication rec {
6   pname = "adafruit-ampy";
7   version = "1.1.0";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "f4cba36f564096f2aafd173f7fbabb845365cc3bb3f41c37541edf98b58d3976";
12   };
14   nativeBuildInputs = [ setuptools-scm ];
15   propagatedBuildInputs = [ click python-dotenv pyserial ];
17   # No tests
18   doCheck = false;
20   meta = with lib; {
21     homepage = "https://github.com/pycampers/ampy";
22     license = licenses.mit;
23     description = "Utility to interact with a MicroPython board over a serial connection";
24     maintainers = with maintainers; [ ];
25   };