7 python3.pkgs.buildPythonApplication rec {
12 src = fetchFromGitHub {
13 owner = "heavenshell";
15 rev = "refs/tags/${version}";
16 hash = "sha256-iVu+5o8pZ5OhIzNItWbzUzqC3VQ6HCD7nP5gW/PVAMM=";
19 nativeBuildInputs = with python3.pkgs; [
24 propagatedBuildInputs = with python3.pkgs; [
30 nativeCheckInputs = with python3.pkgs; [
35 pythonImportsCheck = [ "doq" ];
38 description = "Docstring generator for Python";
39 homepage = "https://github.com/heavenshell/py-doq";
40 changelog = "https://github.com/heavenshell/py-doq/releases/tag/${lib.removePrefix "refs/tags/" src.rev}";
41 license = licenses.bsd3;
42 maintainers = with maintainers; [ natsukium ];