nixpkgs/pkgs/development/python-modules/m2r/default.nix
Frederik Rietdijk ced21f5e1a pythonPackages: remove name attribute`
The `buildPython*` function computes name from `pname` and `version`.
This change removes `name` attribute from all expressions in
`pkgs/development/python-modules`.

While at it, some other minor changes were made as well, such as
replacing `fetchurl` calls with `fetchPypi`.
2018-06-23 18:14:26 +02:00

25 lines
684 B
Nix
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ stdenv, buildPythonPackage, fetchPypi,
mistune, docutils } :
buildPythonPackage rec {
pname = "m2r";
version = "0.1.14";
src = fetchPypi {
inherit pname version;
sha256 = "a14635cdeedb125f0f85e014eb5898fd634e2da358a160c124818e9c9f851add";
};
propagatedBuildInputs = [ mistune docutils ];
# Some tests interfeere with each other (test.md and test.rst are
# deleted by some tests and not properly regenerated)
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/miyakogi/m2r;
description = "converts a markdown file including reST markups to a valid reST format";
license = licenses.mit;
maintainers = [ ];
};
}