nixpkgs/pkgs/development/python-modules/zfec/default.nix
2018-12-03 16:50:37 +01:00

38 lines
1,006 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, setuptoolsDarcs
, pyutil
, argparse
, isPyPy
}:
buildPythonPackage rec {
pname = "zfec";
version = "1.5.3";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
sha256 = "b41bd4b0af9c6b3a78bd6734e1e4511475944164375e6241b53df518a366922b";
};
buildInputs = [ setuptoolsDarcs ];
propagatedBuildInputs = [ pyutil argparse ];
meta = with stdenv.lib; {
homepage = http://allmydata.org/trac/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;
};
}