7 python3Packages.buildPythonApplication rec {
12 src = fetchFromGitHub {
13 owner = "AThePeanut4";
15 rev = "refs/tags/v${version}";
16 hash = "sha256-pt35Kw0kaZsIGTutXPhjdp8czGtWrSUFWMV3NyFQ/NM=";
19 build-system = with python3Packages; [
23 dependencies = with python3Packages; [
28 pythonImportsCheck = [ "docify" ];
30 # upstream has no tests
34 changelog = "https://github.com/AThePeanut4/docify/releases/tag/v${version}";
35 description = "Script to add docstrings to Python type stubs using reflection";
36 homepage = "https://github.com/AThePeanut4/docify";
37 license = lib.licenses.mit;
38 mainProgram = "docify";
39 maintainers = with lib.maintainers; [ dotlambda ];