Files
nixpkgs/pkgs/development/python-modules/ecpy/default.nix
Martin Weinelt 4bd0b9c7ab Reapply "Merge remote-tracking branch 'origin/master' into staging-next"
This reverts commit 106b1418bc.

Restores the commits lost during the revert of a merge on staging-next.
2025-08-23 16:06:41 +02:00

34 lines
657 B
Nix

{
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 = with lib; {
description = "Pure Pyhton Elliptic Curve Library";
homepage = "https://github.com/ubinity/ECPy";
changelog = "https://github.com/cslashm/ECPy/releases/tag/${version}";
license = licenses.asl20;
maintainers = [ ];
};
}