summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/aocd-example-parser/default.nix
blob: d071b2ad303a9c1aec6a88d0687dac9341d43d6f (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 = "2024.12.25";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "wimglenn";
    repo = "aocd-example-parser";
    rev = "c86bfc714d2f413965a46a2caf3483e823ea9ade";
    hash = "sha256-1Le1jrLCFRJcUngoq5bt22gM1lpAMBNBRWjOl3yLlsw=";
  };

  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 ];
  };
}