python310Packages.nh3: init at 0.2.13
This commit is contained in:
parent
34046a64cc
commit
6d8c23b2fb
2 changed files with 48 additions and 0 deletions
46
pkgs/development/python-modules/nh3/default.nix
Normal file
46
pkgs/development/python-modules/nh3/default.nix
Normal file
|
@ -0,0 +1,46 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -6862,6 +6862,8 @@ self: super: with self; {
|
|||
enablePython = true; # ... and its Python bindings
|
||||
})).python;
|
||||
|
||||
nh3 = callPackage ../development/python-modules/nh3 { };
|
||||
|
||||
niaaml = callPackage ../development/python-modules/niaaml { };
|
||||
|
||||
nianet = callPackage ../development/python-modules/nianet { };
|
||||
|
|
Loading…
Reference in a new issue