85f96822a0
Rust 1.50.0 incorporated a Cargo change (rust-lang/cargo#8937) in which cargo vendor erroneously changed permissions of vendored crates. This was fixed in Rust 1.51.0 (rust-lang/cargo#9131). Unfortunately, this means that all cargoSha256/cargoHashes produced during the Rust 1.50.0 cycle are potentially broken. This change updates cargoSha256/cargoHash tree-wide. Fixes #121994.
94 lines
1.8 KiB
Nix
94 lines
1.8 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, rustPlatform
|
|
, llvmPackages
|
|
, pkg-config
|
|
, pcsclite
|
|
, nettle
|
|
, requests
|
|
, vcrpy
|
|
, numpy
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, PCSC
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "johnnycanencrypt";
|
|
version = "0.5.0";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kushaldas";
|
|
repo = "johnnycanencrypt";
|
|
rev = "v${version}";
|
|
sha256 = "192wfrlyylrpzq70yki421mi1smk8q2cyki2a1d03q7h6apib3j4";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit patches src;
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-2XhXCKyXVlFgbcOoMy/A5ajiIVxBii56YeI29mO720U=";
|
|
};
|
|
|
|
format = "pyproject";
|
|
|
|
patches = [ ./Cargo.lock.patch ];
|
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
vcrpy
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
llvmPackages.clang
|
|
pkg-config
|
|
] ++ (with rustPlatform; [
|
|
cargoSetupHook
|
|
maturinBuildHook
|
|
]);
|
|
|
|
buildInputs = [
|
|
pcsclite
|
|
nettle
|
|
] ++ lib.optionals stdenv.isDarwin [ PCSC ];
|
|
|
|
# Needed b/c need to check AFTER python wheel is installed (using Rust Build, not buildPythonPackage)
|
|
doCheck = false;
|
|
doInstallCheck = true;
|
|
|
|
installCheckInputs = [
|
|
pytestCheckHook
|
|
numpy
|
|
];
|
|
|
|
# Remove with the next release after 0.5.0. This change is required
|
|
# for compatibility with maturin 0.9.0.
|
|
postPatch = ''
|
|
sed '/project-url = /d' -i Cargo.toml
|
|
'';
|
|
|
|
preCheck = ''
|
|
export TESTDIR=$(mktemp -d)
|
|
cp -r tests/ $TESTDIR
|
|
pushd $TESTDIR
|
|
'';
|
|
|
|
postCheck = ''
|
|
popd
|
|
'';
|
|
|
|
pythonImportsCheck = [ "johnnycanencrypt" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/kushaldas/johnnycanencrypt";
|
|
description = "Python module for OpenPGP written in Rust";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ _0x4A6F ];
|
|
};
|
|
}
|