summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/aocd-example-parser/default.nix
blob: 95bcae4cace3cf32be4ea2f9d3517c746861b43c (plain)
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
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  flit-core,
}:

buildPythonPackage {
  pname = "aocd-example-parser";
  version = "2025.12.12";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "wimglenn";
    repo = "aocd-example-parser";
    rev = "6331ed538dcb25c6d9fd2ef679ccd361ea4ea0af";
    hash = "sha256-RgTs17TxLhmexkWjPTWMcERVrmPkhMZfVL195JVToU0=";
  };

  build-system = [ flit-core ];

  # Circular dependency with aocd

  meta = {
    description = "Default implementation of an example parser plugin for advent-of-code-data";
    homepage = "https://github.com/wimglenn/aocd-example-parser";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}