summary refs log tree commit diff
path: root/pkgs/tools/text/rst2html5/default.nix
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2020-11-30 17:36:21 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2020-11-30 17:58:53 -0300
commit90aacae8a503cbf592d8b422b83f02e9bd6cb274 (patch)
treeb69622789daf5afb77397bc3deb0821e1139b8eb /pkgs/tools/text/rst2html5/default.nix
parentf838208033f28b549f8e2aaf134df06cfcfd2326 (diff)
downloadnixpkgs-90aacae8a503cbf592d8b422b83f02e9bd6cb274.tar
nixpkgs-90aacae8a503cbf592d8b422b83f02e9bd6cb274.tar.gz
nixpkgs-90aacae8a503cbf592d8b422b83f02e9bd6cb274.tar.bz2
nixpkgs-90aacae8a503cbf592d8b422b83f02e9bd6cb274.tar.lz
nixpkgs-90aacae8a503cbf592d8b422b83f02e9bd6cb274.tar.xz
nixpkgs-90aacae8a503cbf592d8b422b83f02e9bd6cb274.tar.zst
nixpkgs-90aacae8a503cbf592d8b422b83f02e9bd6cb274.zip
rst2html5: 1.9.4 -> 1.10.6
Diffstat (limited to 'pkgs/tools/text/rst2html5/default.nix')
-rw-r--r--pkgs/tools/text/rst2html5/default.nix21
1 files changed, 12 insertions, 9 deletions
diff --git a/pkgs/tools/text/rst2html5/default.nix b/pkgs/tools/text/rst2html5/default.nix
index d20ce99dd74..6f484bed8bc 100644
--- a/pkgs/tools/text/rst2html5/default.nix
+++ b/pkgs/tools/text/rst2html5/default.nix
@@ -1,19 +1,22 @@
-{ stdenv, fetchurl, pythonPackages }:
+{ lib, python3Packages }:
 
-pythonPackages.buildPythonPackage rec {
+let
   pname = "rst2html5";
-  version = "1.9.4";
+  version = "1.10.6";
+in python3Packages.buildPythonPackage {
+  inherit pname version;
+  format = "wheel";
 
-  src = fetchurl {
-    url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${pname}-${version}.tar.gz";
-    sha256 = "d044589d30eeaf7336986078b7bd175510fd649a212b01a457d7806b279e6c73";
+  src = python3Packages.fetchPypi {
+    inherit pname version;
+    sha256 = "sha256-jmToDFLQODqgTycBp2J8LyoJ1Zxho9w1VdhFMzvDFkg=";
   };
 
-  propagatedBuildInputs = with pythonPackages;
+  propagatedBuildInputs = with python3Packages;
   [ docutils genshi pygments beautifulsoup4 ];
 
-  meta = with stdenv.lib;{
-    homepage = "https://bitbucket.org/andre_felipe_dias/rst2html5";
+  meta = with lib;{
+    homepage = "https://pypi.org/project/rst2html5/";
     description = "Converts ReSTructuredText to (X)HTML5";
     license = licenses.mit;
     maintainers = with maintainers; [ AndersonTorres ];