linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / markdown2 / default.nix
blobb40254f089879df7a984ddd95b6efc99d297af98
1 { lib, buildPythonPackage, fetchFromGitHub, python, pygments }:
3 buildPythonPackage rec {
4   pname = "markdown2";
5   version = "2.4.0";
7   # PyPI does not contain tests, so using GitHub instead.
8   src = fetchFromGitHub {
9     owner = "trentm";
10     repo = "python-markdown2";
11     rev = version;
12     sha256 = "sha256:03qmf087phpj0h9hx111k4r5pkm48dhb61mqhp1v75gd09k0z79z";
13   };
15   checkInputs = [ pygments ];
17   checkPhase = ''
18     ${python.interpreter} ./test/test.py
19   '';
21   meta = with lib; {
22     description = "A fast and complete Python implementation of Markdown";
23     homepage =  "https://github.com/trentm/python-markdown2";
24     license = licenses.mit;
25     maintainers = with maintainers; [ hbunke ];
26   };