python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / bleach-allowlist / default.nix
blob2ef358f71fa391aad77dca16284d727bed3718e8
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   bleach,
6 }:
8 buildPythonPackage rec {
9   pname = "bleach-allowlist";
10   version = "1.0.3";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-VuIghgeaDmoxAK6Z5NuvIOslhUhlmOsOmUAIoRQo2ps=";
16   };
18   propagatedBuildInputs = [ bleach ];
20   # No tests
21   doCheck = false;
23   pythonImportsCheck = [ "bleach_allowlist" ];
25   meta = with lib; {
26     description = "Curated lists of tags and attributes for sanitizing html";
27     homepage = "https://github.com/yourcelf/bleach-allowlist";
28     license = licenses.bsd2;
29     maintainers = with maintainers; [ ambroisie ];
30   };