summary refs log tree commit diff
path: root/pkgs/tools/misc/online-judge-template-generator/default.nix
blob: e867059eff3a2ea7c1d50376b22d13ab3260b44d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{ lib
, buildPythonApplication
, appdirs
, beautifulsoup4
, colorlog
, fetchFromGitHub
, mako
, online-judge-api-client
, online-judge-tools
, ply
, pyyaml
, requests
, setuptools
, toml
}:

buildPythonApplication rec {
  pname = "online-judge-template-generator";
  version = "4.8.1";

  src = fetchFromGitHub {
    owner = "online-judge-tools";
    repo = "template-generator";
    rev = "v${version}";
    sha256 = "sha256-cS1ED1a92fEFqy6ht8UFjxocWIm35IA/VuaPSLsdlqg=";
  };

  propagatedBuildInputs = [
    appdirs
    beautifulsoup4
    colorlog
    mako
    online-judge-api-client
    online-judge-tools
    ply
    pyyaml
    requests
    setuptools
    toml
  ];

  # Needs internet to run tests
  doCheck = false;

  meta = with lib; {
    description = "Analyze problems of competitive programming and automatically generate boilerplate";
    homepage = "https://github.com/online-judge-tools/template-generator";
    license = licenses.mit;
    maintainers = with maintainers; [ sei40kr ];
  };
}