nixpkgs/pkgs/tools/misc/wayback-machine-archiver/default.nix
2022-06-17 20:03:49 +02:00

32 lines
930 B
Nix

{ lib, python3, fetchFromGitHub }:
python3.pkgs.buildPythonApplication rec {
pname = "wayback-machine-archiver";
version = "1.9.1";
src = fetchFromGitHub {
owner = "agude";
repo = "wayback-machine-archiver";
rev = "v${version}";
sha256 = "0dnnqx507gpj8wsx6f2ivfmha969ydayiqsvxh23p9qcixw9257x";
};
nativeBuildInputs = with python3.pkgs; [ pypandoc ];
propagatedBuildInputs = with python3.pkgs; [ requests ];
checkInputs = with python3.pkgs; [ pytestCheckHook requests-mock ];
postPatch = ''
substituteInPlace setup.py \
--replace \"pytest-runner\", ""
'';
pythonImportsCheck = [ "wayback_machine_archiver" ];
meta = with lib; {
description = "A Python script to submit web pages to the Wayback Machine for archiving";
homepage = "https://github.com/agude/wayback-machine-archiver";
license = licenses.mit;
maintainers = with maintainers; [ dandellion ];
};
}