Merge pull request #114536 from bobrik/ivan/rst2html5-wheel

rst2html5: fix download now that it is a wheel
This commit is contained in:
Anderson Torres 2021-02-27 21:17:21 -03:00 committed by GitHub
commit 49c5be4840
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,12 +3,12 @@
let
pname = "rst2html5";
version = "1.10.6";
in python3Packages.buildPythonPackage {
inherit pname version;
format = "wheel";
in python3Packages.buildPythonPackage {
inherit pname version format;
src = python3Packages.fetchPypi {
inherit pname version;
inherit pname version format;
sha256 = "sha256-jmToDFLQODqgTycBp2J8LyoJ1Zxho9w1VdhFMzvDFkg=";
};