ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / docstring-parser / default.nix
blob53a59f10ffac5f610005d0c400640d80cda8b78a
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , poetry-core
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "docstring-parser";
11   version = "0.14.1";
12   format = "pyproject";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "rr-";
18     repo = "docstring_parser";
19     rev = "${version}";
20     hash = "sha256-NIijq+QR0panVCGDEQrTlkAvHfIexwS0PxFikglxd74=";
21   };
23   nativeBuildInputs = [
24     poetry-core
25   ];
27   checkInputs = [
28     pytestCheckHook
29   ];
31   pythonImportsCheck = [
32     "docstring_parser"
33   ];
35   meta = with lib; {
36     description = "Parse Python docstrings in various flavors";
37     homepage = "https://github.com/rr-/docstring_parser";
38     license = licenses.mit;
39     maintainers = with maintainers; [ SomeoneSerge ];
40   };