87f9c27ba9
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
42 lines
970 B
Nix
42 lines
970 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "docstring-to-markdown";
|
|
version = "0.12";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "python-lsp";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-c0gk1s/+25+pWUpi8geDQZ0f9JBeuvvFQ9MFskRnY6U=";
|
|
};
|
|
|
|
patches = [
|
|
# So pytest-flake8 and pytest-cov won't be needed
|
|
./remove-coverage-tests.patch
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"docstring_to_markdown"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/python-lsp/docstring-to-markdown";
|
|
description = "On the fly conversion of Python docstrings to markdown";
|
|
changelog = "https://github.com/python-lsp/docstring-to-markdown/releases/tag/v${version}";
|
|
license = licenses.lgpl2Plus;
|
|
maintainers = with maintainers; [ doronbehar ];
|
|
};
|
|
}
|