depot/third_party/nixpkgs/pkgs/development/python-modules/nh3/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

46 lines
1 KiB
Nix

{ lib
, stdenv
, buildPythonPackage
, pythonOlder
, rustPlatform
, libiconv
, fetchFromGitHub
, darwin
}:
let
pname = "nh3";
version = "0.2.13";
src = fetchFromGitHub {
owner = "messense";
repo = pname;
rev = "v${version}";
hash = "sha256-NILPy+lC0jhOF6ykriUPZWHLlSYBC00tpDdfJ6XjcjA=";
};
in
buildPythonPackage {
inherit pname version src;
format = "pyproject";
disabled = pythonOlder "3.6";
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-Ror2KcIdSeXHa44eUWGiPsKiD935hsBREREySbGedxA=";
};
nativeBuildInputs = with rustPlatform; [ cargoSetupHook maturinBuildHook ];
buildInputs = lib.optionals stdenv.isDarwin [
libiconv
darwin.apple_sdk.frameworks.Security
];
pythonImportsCheck = [ "nh3" ];
meta = with lib; {
description = "Python binding to Ammonia HTML sanitizer Rust crate";
homepage = "https://github.com/messense/nh3";
license = licenses.mit;
maintainers = with maintainers; [ happysalada ];
};
}