31 lines
625 B
Nix
31 lines
625 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, bleach
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bleach-allowlist";
|
|
version = "1.0.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-VuIghgeaDmoxAK6Z5NuvIOslhUhlmOsOmUAIoRQo2ps=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
bleach
|
|
];
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "bleach_allowlist" ];
|
|
|
|
meta = with lib; {
|
|
description = "Curated lists of tags and attributes for sanitizing html";
|
|
homepage = "https://github.com/yourcelf/bleach-allowlist";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ ambroisie ];
|
|
};
|
|
}
|