c229c046b8
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rshell/versions
21 lines
526 B
Nix
21 lines
526 B
Nix
{ lib, buildPythonApplication, fetchPypi, pyserial, pyudev }:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "rshell";
|
|
version = "0.0.25";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "f6857cdc3c53c8ce9ba7a560c2759c10b988f3d9fafde912d3fa4deecb4d4664";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pyserial pyudev ];
|
|
|
|
meta = with lib; {
|
|
homepage = https://github.com/dhylands/rshell;
|
|
description = "Remote Shell for MicroPython";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ c0deaddict ];
|
|
};
|
|
}
|