mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 13:24:29 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
27 lines
611 B
Nix
27 lines
611 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, pytest, which, lrzsz }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "xmodem";
|
|
version = "0.4.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tehmaze";
|
|
repo = "xmodem";
|
|
rev = version;
|
|
sha256 = "1xx7wd8bnswxa1fv3bfim2gcamii79k7qmwg7dbxbjvrhbcjjc0l";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytest which lrzsz ];
|
|
|
|
checkPhase = ''
|
|
pytest
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Pure python implementation of the XMODEM protocol";
|
|
maintainers = with maintainers; [ emantor ];
|
|
homepage = "https://github.com/tehmaze/xmodem";
|
|
license = licenses.mit;
|
|
};
|
|
}
|