2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-29 13:57:14 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, setuptoolsDarcs
|
|
|
|
, pyutil
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zfec";
|
2020-11-29 14:04:46 +00:00
|
|
|
version = "1.5.5";
|
2018-10-29 13:57:14 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 14:04:46 +00:00
|
|
|
sha256 = "6033b2f3cc3edacf3f7eeed5f258c1ebf8a1d7e5e35b623db352512ce564e5ca";
|
2018-10-29 13:57:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ setuptoolsDarcs ];
|
2019-01-08 01:12:07 +00:00
|
|
|
propagatedBuildInputs = [ pyutil ];
|
|
|
|
|
|
|
|
# argparse is in the stdlib but zfec doesn't know that.
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -e '/argparse/d' setup.py
|
|
|
|
'';
|
2018-10-29 13:57:14 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://allmydata.org/trac/zfec";
|
2018-10-29 13:57:14 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|