Merge pull request #213165 from aciceri/mpy-utils

`mpy-utils`: Init at 0.1.13
This commit is contained in:
Francesco Gazzetta 2023-02-17 09:32:04 +00:00 committed by GitHub
commit 6ed4ced8f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, lib, python3, 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;
};
}

View File

@ -1530,6 +1530,8 @@ with pkgs;
mprocs = callPackage ../tools/misc/mprocs { };
mpy-utils = python3Packages.callPackage ../tools/misc/mpy-utils { };
nominatim = callPackage ../servers/nominatim { };
ocs-url = libsForQt5.callPackage ../tools/misc/ocs-url { };