mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
f1ec434848
with the help of deadnix & nil
22 lines
566 B
Nix
22 lines
566 B
Nix
{ stdenv, lib, buildPythonApplication, fetchPypi, fusepy, pyserial }:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "mpy-utils";
|
|
version = "0.1.13";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-die8hseaidhs9X7mfFvV8C8zn0uyw08gcHNqmjl+2Z4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ fusepy pyserial ];
|
|
|
|
meta = with lib; {
|
|
description = "MicroPython development utility programs";
|
|
homepage = "https://github.com/nickzoic/mpy-utils";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ aciceri ];
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
}
|