summary refs log tree commit diff
path: root/pkgs/development/python-modules/xmodem/default.nix
blob: 48d658ba49b9a948947546b609336b270e3f023a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;
  };
}