nixpkgs/pkgs/development/python-modules/bleach-allowlist/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

32 lines
623 B
Nix

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