Merge pull request #153000 from r-ryantm/auto-update/rshell

rshell: 0.0.30 -> 0.0.31
This commit is contained in:
Fabian Affolter 2022-01-05 21:44:56 +01:00 committed by GitHub
commit 832ed91d0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,15 +1,26 @@
{ lib, buildPythonApplication, fetchPypi, pyserial, pyudev }:
{ lib
, buildPythonApplication
, fetchPypi
, pyserial
, pyudev
, pythonOlder
}:
buildPythonApplication rec {
pname = "rshell";
version = "0.0.30";
version = "0.0.31";
disabled = pythonOlder "3.4";
src = fetchPypi {
inherit pname version;
sha256 = "d2002d40d735204037d6142a6c2d51beecc763c124faaf759cabf7acd945be95";
sha256 = "7942b758a9ae5c6ff46516b0317f437dfce9f0721f3a3b635ebd501c9cd38fb9";
};
propagatedBuildInputs = [ pyserial pyudev ];
propagatedBuildInputs = [
pyserial
pyudev
];
meta = with lib; {
homepage = "https://github.com/dhylands/rshell";