mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 13:05:08 +00:00
seventeenlands: init at 0.1.42
This commit is contained in:
parent
3ab4462820
commit
8cdb09fe99
33
pkgs/by-name/se/seventeenlands/package.nix
Normal file
33
pkgs/by-name/se/seventeenlands/package.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user