ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / se / seventeenlands / package.nix
blob821b23bf025c2351cf7a5d4397bb3448a37daf16
2   fetchPypi,
3   lib,
4   python3,
5 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "seventeenlands";
8   version = "0.1.42";
10   src = fetchPypi {
11     inherit pname version;
12     hash = "sha256-P/imV4vvyd6wgjqXzgfIAURFtFhLwX1eS8eiPl79oZk=";
13   };
15   # No tests
16   doCheck = false;
18   pythonImportsCheck = [ "seventeenlands" ];
20   propagatedBuildInputs = with python3.pkgs; [
21     python-dateutil
22     requests
23     tkinter
24   ];
26   meta = with lib; {
27     description = "Client for passing relevant events from MTG Arena logs to the 17Lands REST endpoint, also known as mtga-log-client";
28     homepage = "https://www.17lands.com/";
29     license = licenses.gpl3Only;
30     maintainers = with maintainers; [ sephi ];
31     mainProgram = "seventeenlands";
32   };