linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / savepagenow / default.nix
blobd9166d07b74c78d70ffcbbc42d6c54f0f8ccde11
1 { lib, python3Packages, fetchFromGitHub }:
3 python3Packages.buildPythonApplication rec {
4   pname = "savepagenow";
5   version = "1.1.1";
7   src = fetchFromGitHub {
8     owner = "pastpages";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "1lz6rc47cds9rb35jdf8n13gr61wdkh5jqzx4skikm1yrqkwjyhm";
12   };
14   propagatedBuildInputs = with python3Packages; [ click requests ];
16   # requires network access
17   doCheck = false;
19   meta = with lib; {
20     description = "A simple Python wrapper for archive.org's \"Save Page Now\" capturing service";
21     homepage = "https://github.com/pastpages/savepagenow";
22     license = licenses.mit;
23     maintainers = with maintainers; [ SuperSandro2000 ];
24   };