8 buildPythonPackage rec {
9 pname = "aocd-example-parser";
10 version = "unstable-2023-12-17";
13 disabled = pythonOlder "3.9";
15 src = fetchFromGitHub {
17 repo = "aocd-example-parser";
18 rev = "07330183f3e43401444fe17b08d72eb6168504e1";
19 hash = "sha256-iOxqzZj29aY/xyigir1KOU6GcBBvnlxEOBLHChEQjf4=";
26 # Circular dependency with aocd
27 # pythonImportsCheck = [
28 # "aocd_example_parser"
32 description = "Default implementation of an example parser plugin for advent-of-code-data";
33 homepage = "https://github.com/wimglenn/aocd-example-parser";
34 license = licenses.mit;
35 maintainers = with maintainers; [ fab ];