linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / m2r / default.nix
blob35331c14b08a765b6b125c283465734453088b3f
1 { lib, buildPythonPackage, fetchPypi,
2   mistune, docutils } :
3 buildPythonPackage rec {
4   pname = "m2r";
5   version = "0.2.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "bf90bad66cda1164b17e5ba4a037806d2443f2a4d5ddc9f6a5554a0322aaed99";
10   };
12   propagatedBuildInputs = [ mistune docutils ];
14   # Some tests interfeere with each other (test.md and test.rst are
15   # deleted by some tests and not properly regenerated)
16   doCheck = false;
18   meta = with lib; {
19     homepage = "https://github.com/miyakogi/m2r";
20     description = "converts a markdown file including reST markups to a valid reST format";
21     license = licenses.mit;
22     maintainers = [ ];
23   };