Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / bleach-allowlist / default.nix
blob96f9b6ccf416740413bf317790e1987fd3c0bda8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , bleach
5 }:
7 buildPythonPackage rec {
8   pname = "bleach-allowlist";
9   version = "1.0.3";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-VuIghgeaDmoxAK6Z5NuvIOslhUhlmOsOmUAIoRQo2ps=";
15   };
17   propagatedBuildInputs = [
18     bleach
19   ];
21   # No tests
22   doCheck = false;
24   pythonImportsCheck = [ "bleach_allowlist" ];
26   meta = with lib; {
27     description = "Curated lists of tags and attributes for sanitizing html";
28     homepage = "https://github.com/yourcelf/bleach-allowlist";
29     license = licenses.bsd2;
30     maintainers = with maintainers; [ ambroisie ];
31   };