mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
d08df27200
Diff: https://github.com/kushaldas/johnnycanencrypt/compare/v0.13.1...v0.14.1 Changelog: https://github.com/kushaldas/johnnycanencrypt/blob/v0.14.1/changelog.md
78 lines
1.5 KiB
Nix
78 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 ];
|
|
};
|
|
}
|