2017-09-07 09:01:06 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pytest
|
2018-04-07 14:27:59 +01:00
|
|
|
, mock
|
|
|
|
, cmarkgfm
|
2017-09-07 09:01:06 +01:00
|
|
|
, bleach
|
|
|
|
, docutils
|
2018-04-07 14:27:59 +01:00
|
|
|
, future
|
2017-09-07 09:01:06 +01:00
|
|
|
, pygments
|
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "readme_renderer";
|
2018-10-24 08:21:08 +01:00
|
|
|
version = "22.0";
|
2017-09-07 09:01:06 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-10-24 08:21:08 +01:00
|
|
|
sha256 = "1lj3k3x7wm0w5xdy82jwl0fmchqmlkdh24g41n3lka7ybxqahz13";
|
2017-09-07 09:01:06 +01:00
|
|
|
};
|
|
|
|
|
2018-04-07 14:27:59 +01:00
|
|
|
checkInputs = [ pytest mock ];
|
2017-09-07 09:01:06 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2018-04-07 14:27:59 +01:00
|
|
|
bleach cmarkgfm docutils future pygments six
|
2017-09-07 09:01:06 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
checkPhase = ''
|
2018-09-10 16:19:05 +01:00
|
|
|
# disable one failing test case
|
|
|
|
py.test -k "not test_invalid_link"
|
2017-09-07 09:01:06 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "readme_renderer is a library for rendering readme descriptions for Warehouse";
|
|
|
|
homepage = https://github.com/pypa/readme_renderer;
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
};
|
2018-03-17 14:42:52 +00:00
|
|
|
}
|