python3Packages.fastecdsa: init at 2.1.5
This commit is contained in:
parent
81ea113820
commit
f70ecb65e7
40
pkgs/development/python-modules/fastecdsa/default.nix
Normal file
40
pkgs/development/python-modules/fastecdsa/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, gmp
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "fastecdsa";
|
||||
version = "2.1.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "d0772f7fe243e8a82d33e95c542ea6cc0ef7f3cfcced7440d6defa71a35addfa";
|
||||
};
|
||||
|
||||
buildInputs = [ gmp ];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
# skip tests which require being online to download test vectors
|
||||
pytestFlags = [
|
||||
"--ignore=fastecdsa/tests/test_wycheproof_vectors.py"
|
||||
"--ignore=fastecdsa/tests/test_rfc6979_ecdsa.py"
|
||||
];
|
||||
|
||||
# skip tests for now, they fail with
|
||||
# ImportError: cannot import name '_ecdsa' from 'fastecdsa'
|
||||
# but the installed package works just fine
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "fastecdsa" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fast elliptic curve digital signatures";
|
||||
homepage = "https://github.com/AntonKueltz/fastecdsa";
|
||||
license = licenses.unlicense;
|
||||
maintainers = with maintainers; [ prusnak ];
|
||||
};
|
||||
}
|
@ -2012,6 +2012,8 @@ in {
|
||||
|
||||
fastdtw = callPackage ../development/python-modules/fastdtw { };
|
||||
|
||||
fastecdsa = callPackage ../development/python-modules/fastecdsa { };
|
||||
|
||||
fasteners = callPackage ../development/python-modules/fasteners { };
|
||||
|
||||
fastentrypoints = callPackage ../development/python-modules/fastentrypoints { };
|
||||
|
Loading…
Reference in New Issue
Block a user