rshell: one item er line
This commit is contained in:
parent
1cd5f2704d
commit
244948e66b
1 changed files with 13 additions and 2 deletions
|
@ -1,15 +1,26 @@
|
|||
{ lib, buildPythonApplication, fetchPypi, pyserial, pyudev }:
|
||||
{ lib
|
||||
, buildPythonApplication
|
||||
, fetchPypi
|
||||
, pyserial
|
||||
, pyudev
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "rshell";
|
||||
version = "0.0.31";
|
||||
|
||||
disabled = pythonOlder "3.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "7942b758a9ae5c6ff46516b0317f437dfce9f0721f3a3b635ebd501c9cd38fb9";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyserial pyudev ];
|
||||
propagatedBuildInputs = [
|
||||
pyserial
|
||||
pyudev
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/dhylands/rshell";
|
||||
|
|
Loading…
Reference in a new issue