6 python3.pkgs.buildPythonApplication rec {
11 src = fetchFromGitHub {
12 owner = "heavenshell";
14 rev = "refs/tags/${version}";
15 hash = "sha256-iVu+5o8pZ5OhIzNItWbzUzqC3VQ6HCD7nP5gW/PVAMM=";
18 nativeBuildInputs = with python3.pkgs; [
23 propagatedBuildInputs = with python3.pkgs; [
29 nativeCheckInputs = with python3.pkgs; [
34 pythonImportsCheck = [ "doq" ];
37 description = "Docstring generator for Python";
38 homepage = "https://github.com/heavenshell/py-doq";
39 changelog = "https://github.com/heavenshell/py-doq/releases/tag/${lib.removePrefix "refs/tags/" src.rev}";
40 license = licenses.bsd3;
41 maintainers = with maintainers; [ natsukium ];