pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / python-modules / waybackpy / default.nix
blob222a3566600fb27790f524647bf0bc0db68ea32c
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   click,
6   urllib3,
7   requests,
8   pytest,
9 }:
10 buildPythonPackage rec {
11   pname = "waybackpy";
12   version = "3.0.6";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-SXo3F1arp2ROt62g69TtsVy4xTvBNMyXO/AjoSyv+D8=";
17   };
19   dependencies = [
20     click
21     urllib3
22     requests
23   ];
25   nativeBuildInputs = [ pytest ];
27   pythonImportsCheck = [ "waybackpy" ];
29   meta = with lib; {
30     homepage = "https://akamhy.github.io/waybackpy/";
31     description = "Wayback Machine API interface & a command-line tool";
32     license = licenses.mit;
33     maintainers = with maintainers; [ chpatrick ];
34   };