depot/third_party/nixpkgs/pkgs/development/python-modules/johnnycanencrypt/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

75 lines
1.5 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
buildPythonPackage,
rustPlatform,
pkg-config,
pcsclite,
nettle,
httpx,
pytestCheckHook,
pythonOlder,
vcrpy,
PCSC,
libiconv,
}:
buildPythonPackage rec {
pname = "johnnycanencrypt";
version = "0.14.1";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "kushaldas";
repo = "johnnycanencrypt";
rev = "v${version}";
hash = "sha256-13zIC+zH/BebMplUfdtiwEEVODS+jTURC1vudbmQPlA=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-u3qKli76XGS0Ijg15BQzbFlfLPpBPFKh++EZLfnO9ps=";
};
format = "pyproject";
propagatedBuildInputs = [ httpx ];
nativeBuildInputs =
[ pkg-config ]
++ (with rustPlatform; [
bindgenHook
cargoSetupHook
maturinBuildHook
]);
buildInputs =
[ nettle ]
++ lib.optionals stdenv.isLinux [ pcsclite ]
++ lib.optionals stdenv.isDarwin [
PCSC
libiconv
];
nativeCheckInputs = [
pytestCheckHook
vcrpy
];
preCheck = ''
# import from $out
rm -r johnnycanencrypt
'';
pythonImportsCheck = [ "johnnycanencrypt" ];
meta = with lib; {
homepage = "https://github.com/kushaldas/johnnycanencrypt";
changelog = "https://github.com/kushaldas/johnnycanencrypt/blob/v${version}/changelog.md";
description = "Python module for OpenPGP written in Rust";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ _0x4A6F ];
};
}