depot/third_party/nixpkgs/pkgs/by-name/se/seventeenlands/package.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

33 lines
748 B
Nix

{
fetchPypi,
lib,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "seventeenlands";
version = "0.1.42";
src = fetchPypi {
inherit pname version;
hash = "sha256-P/imV4vvyd6wgjqXzgfIAURFtFhLwX1eS8eiPl79oZk=";
};
# No tests
doCheck = false;
pythonImportsCheck = [ "seventeenlands" ];
propagatedBuildInputs = with python3.pkgs; [
python-dateutil
requests
tkinter
];
meta = with lib; {
description = "Client for passing relevant events from MTG Arena logs to the 17Lands REST endpoint, also known as mtga-log-client";
homepage = "https://www.17lands.com/";
license = licenses.gpl3Only;
maintainers = with maintainers; [ sephi ];
mainProgram = "seventeenlands";
};
}