blob: 5d8c4e7ee25afaa04b16ec1d00cdf45bcd15f1c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
fetchPypi,
buildPythonPackage,
setuptools,
}:
buildPythonPackage rec {
pname = "ecpy";
version = "1.2.5";
pyproject = true;
src = fetchPypi {
pname = "ECPy";
inherit version;
hash = "sha256-ljXP+5tuz3/X9yrqFmWCmsdKHScgBtAFfUWmIariAig=";
};
build-system = [ setuptools ];
# No tests implemented
doCheck = false;
pythonImportsCheck = [ "ecpy" ];
meta = {
description = "Pure Python Elliptic Curve Library";
homepage = "https://github.com/ubinity/ECPy";
changelog = "https://github.com/cslashm/ECPy/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|