about summary refs log tree commit diff
path: root/pkgs/development/python-modules/phe/default.nix
blob: 98f6a02f2f19b76b1ba709ea8840d974bf1a4c57 (plain) (blame)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  isPyPy,
  isPy3k,
  setuptools,
  click,
  gmpy2,
  pytestCheckHook,
  numpy,
}:

buildPythonPackage rec {
  pname = "phe";
  version = "1.5.0";
  pyproject = true;

  # https://github.com/data61/python-paillier/issues/51
  disabled = isPyPy || !isPy3k;

  src = fetchFromGitHub {
    owner = "data61";
    repo = "python-paillier";
    rev = "refs/tags/${version}";
    hash = "sha256-fsZ8x/K+8V4zyVgkci6XNAm89zQFWEbmRVp4jazFfVY=";
  };

  build-system = [ setuptools ];

  dependencies = [
    click
    gmpy2 # optional, but major speed improvement
  ];

  nativeCheckInputs = [
    pytestCheckHook
    numpy
  ];

  meta = with lib; {
    description = "A library for Partially Homomorphic Encryption in Python";
    mainProgram = "pheutil";
    homepage = "https://github.com/data61/python-paillier";
    license = licenses.gpl3;
    maintainers = with maintainers; [ tomasajt ];
  };
}