about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/zfec/default.nix
blob: fc3b710919bc1ddbb89450a017f85765741e6dbf (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
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, pyutil
, twisted
}:

buildPythonPackage rec {
  pname = "zfec";
  version = "1.5.7.4";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-EGmFchj4ur5AhEOXEnIIA6Ef6RsU8gvHepak5vThER8=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [ pyutil ];

  nativeCheckInputs = [ twisted ];

  checkPhase = "trial zfec";

  pythonImportsCheck = [ "zfec" ];

  meta = with lib; {
    homepage = "https://github.com/tahoe-lafs/zfec";
    description = "Zfec, a fast erasure codec which can be used with the command-line, C, Python, or Haskell";
    longDescription = ''
      Fast, portable, programmable erasure coding a.k.a. "forward
      error correction": the generation of redundant blocks of
      information such that if some blocks are lost then the
      original data can be recovered from the remaining blocks. The
      zfec package includes command-line tools, C API, Python API,
      and Haskell API.
    '';
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ prusnak ];
  };

}