evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / mktestdocs / default.nix
blobf1a1b654bf1276600da0b60b19e435dfe7419564
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
6   # build-system
7   setuptools,
9   # tests
10   pytestCheckHook,
13 buildPythonPackage rec {
14   pname = "mktestdocs";
15   version = "0.2.3";
16   pyproject = true;
18   src = fetchFromGitHub {
19     owner = "koaning";
20     repo = "mktestdocs";
21     rev = "refs/tags/${version}";
22     hash = "sha256-egLlgq0lQOk0cPBly01zQ0rkl7D7Rf/bZ4en5oG+wlE=";
23   };
25   build-system = [ setuptools ];
27   pythonImportsCheck = [ "mktestdocs" ];
29   nativeCheckInputs = [ pytestCheckHook ];
31   meta = {
32     description = "Run pytest against markdown files/docstrings";
33     homepage = "https://github.com/koaning/mktestdocs";
34     changelog = "https://github.com/koaning/mktestdocs/releases/tag/${version}";
35     license = lib.licenses.asl20;
36     maintainers = with lib.maintainers; [ GaetanLepage ];
37   };