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