Files
nixpkgs/pkgs/development/python-modules/bleach-allowlist/default.nix
2024-05-22 17:32:03 +02:00

32 lines
648 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
bleach,
}:
buildPythonPackage rec {
pname = "bleach-allowlist";
version = "1.0.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "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 ];
};
}