f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
24 lines
672 B
Nix
24 lines
672 B
Nix
{ stdenv, fetchurl, pythonPackages }:
|
|
|
|
pythonPackages.buildPythonPackage rec {
|
|
|
|
name = "${pname}-${version}";
|
|
pname = "rst2html5";
|
|
version = "1.9.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
|
|
sha256 = "1js90asy7s0278b4p28inkkp0r7ajr5fk5pcdgcdw628a30vl3i6";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages;
|
|
[ docutils genshi pygments beautifulsoup4 ];
|
|
|
|
meta = with stdenv.lib;{
|
|
homepage = https://bitbucket.org/andre_felipe_dias/rst2html5;
|
|
description = "Converts ReSTructuredText to (X)HTML5";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
};
|
|
}
|