pythonPackages.xmodem: init at 0.4.5

This commit is contained in:
Rouven Czerwinski 2020-01-04 08:12:06 +01:00
parent 888290d17e
commit b656da1683
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, pytest, which, lrzsz }:
buildPythonPackage rec {
pname = "xmodem";
version = "0.4.5";
src = fetchFromGitHub {
owner = "tehmaze";
repo = "xmodem";
rev = version;
sha256 = "0nz2gxwaq3ys1knpw6zlz3xrc3ziambcirg3fmp3nvzjdq8ma3h0";
};
checkInputs = [ pytest which lrzsz ];
checkPhase = ''
pytest
'';
meta = with stdenv.lib; {
description = "Pure python implementation of the XMODEM protocol";
maintainers = with maintainers; [ emantor ];
homepage = https://github.com/tehmaze/xmodem;
license = licenses.mit;
};
}

View File

@ -6220,6 +6220,8 @@ in {
xlsx2csv = callPackage ../development/python-modules/xlsx2csv { };
xmodem = callPackage ../development/python-modules/xmodem {};
xmpppy = callPackage ../development/python-modules/xmpppy {};
xstatic = callPackage ../development/python-modules/xstatic {};