1{
2 stdenv,
3 lib,
4 buildPythonApplication,
5 fetchPypi,
6 fusepy,
7 pyserial,
8}:
9
10buildPythonApplication rec {
11 pname = "mpy-utils";
12 version = "0.1.13";
13 format = "setuptools";
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-die8hseaidhs9X7mfFvV8C8zn0uyw08gcHNqmjl+2Z4=";
18 };
19
20 propagatedBuildInputs = [
21 fusepy
22 pyserial
23 ];
24
25 meta = with lib; {
26 description = "MicroPython development utility programs";
27 homepage = "https://github.com/nickzoic/mpy-utils";
28 license = licenses.mit;
29 maintainers = with maintainers; [ aciceri ];
30 broken = stdenv.hostPlatform.isDarwin;
31 };
32}