Merge pull request #213165 from aciceri/mpy-utils
`mpy-utils`: Init at 0.1.13
This commit is contained in:
commit
6ed4ced8f5
21
pkgs/tools/misc/mpy-utils/default.nix
Normal file
21
pkgs/tools/misc/mpy-utils/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user