14 buildPythonPackage rec {
19 # https://github.com/data61/python-paillier/issues/51
20 disabled = isPyPy || !isPy3k;
22 src = fetchFromGitHub {
24 repo = "python-paillier";
25 rev = "refs/tags/${version}";
26 hash = "sha256-P//4ZL4+2zcB5sWvujs2N0CHFz+EBLERWrPGLLHj6CY=";
29 build-system = [ setuptools ];
33 gmpy2 # optional, but major speed improvement
42 description = "Library for Partially Homomorphic Encryption in Python";
43 mainProgram = "pheutil";
44 homepage = "https://github.com/data61/python-paillier";
45 license = licenses.gpl3;
46 maintainers = with maintainers; [ tomasajt ];