about summary refs log tree commit diff
path: root/pkgs/development/python-modules/fastecdsa
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2020-09-30 21:47:42 +0200
committerPavol Rusnak <pavol@rusnak.io>2020-11-12 20:59:56 +0100
commitf70ecb65e71837e1029796d83af253a904ab38b6 (patch)
tree014adcca7e22150e32bd1297436938af72975fa1 /pkgs/development/python-modules/fastecdsa
parent81ea11382038fd12a99c3deb14d7f5655beb8e78 (diff)
python3Packages.fastecdsa: init at 2.1.5
Diffstat (limited to 'pkgs/development/python-modules/fastecdsa')
-rw-r--r--pkgs/development/python-modules/fastecdsa/default.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/fastecdsa/default.nix b/pkgs/development/python-modules/fastecdsa/default.nix
new file mode 100644
index 0000000000000..04d9da87c5c11
--- /dev/null
+++ b/pkgs/development/python-modules/fastecdsa/default.nix
@@ -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 ];
+  };
+}