33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
27 lines
590 B
Nix
27 lines
590 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
, beautifulsoup4
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "markdownify";
|
|
version = "0.11.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-AJskDgyfTI6vHQhWJdzUAR4S8PjOxV3t+epvdlXkm/4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ beautifulsoup4 six ];
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
description = "HTML to Markdown converter";
|
|
homepage = "https://github.com/matthewwithanm/python-markdownify";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.McSinyx ];
|
|
};
|
|
}
|