python310Packages.paranoid-crypto: init at unstable-20220819
This commit is contained in:
parent
15fe59e33a
commit
319c0bb69d
2 changed files with 72 additions and 0 deletions
70
pkgs/development/python-modules/paranoid-crypto/default.nix
Normal file
70
pkgs/development/python-modules/paranoid-crypto/default.nix
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
{ lib
|
||||||
|
, absl-py
|
||||||
|
, buildPythonPackage
|
||||||
|
, cryptography
|
||||||
|
, fetchFromGitHub
|
||||||
|
, fpylll
|
||||||
|
, gmpy
|
||||||
|
, protobuf
|
||||||
|
, pybind11
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
, scipy
|
||||||
|
, sympy
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "paranoid-crypto";
|
||||||
|
version = "unstable-20220819";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.9";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "google";
|
||||||
|
repo = "paranoid_crypto";
|
||||||
|
# https://github.com/google/paranoid_crypto/issues/11
|
||||||
|
rev = "8abccc1619748b93979d1c26234b90d26e88a12e";
|
||||||
|
hash = "sha256-4yF7WAFAGGhvWTV/y5dGVA/+9r1dqrXU/0/6Edgw3ow=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
protobuf
|
||||||
|
pybind11
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
absl-py
|
||||||
|
cryptography
|
||||||
|
gmpy
|
||||||
|
scipy
|
||||||
|
sympy
|
||||||
|
protobuf
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
fpylll
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace requirements.txt \
|
||||||
|
--replace "protobuf==3.20.*" "protobuf"
|
||||||
|
'';
|
||||||
|
|
||||||
|
disabledTestPaths = [
|
||||||
|
# Import issue
|
||||||
|
"paranoid_crypto/lib/randomness_tests/"
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"paranoid_crypto"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Library contains checks for well known weaknesses on cryptographic artifacts";
|
||||||
|
homepage = "https://github.com/google/paranoid_crypto";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -6500,6 +6500,8 @@ in {
|
||||||
|
|
||||||
paramz = callPackage ../development/python-modules/paramz { };
|
paramz = callPackage ../development/python-modules/paramz { };
|
||||||
|
|
||||||
|
paranoid-crypto = callPackage ../development/python-modules/paranoid-crypto { };
|
||||||
|
|
||||||
parfive = callPackage ../development/python-modules/parfive { };
|
parfive = callPackage ../development/python-modules/parfive { };
|
||||||
|
|
||||||
parquet = callPackage ../development/python-modules/parquet { };
|
parquet = callPackage ../development/python-modules/parquet { };
|
||||||
|
|
Loading…
Reference in a new issue