2021-02-05 17:12:51 +00:00
|
|
|
{ lib
|
2020-04-24 23:36:52 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2024-01-13 08:15:51 +00:00
|
|
|
, setuptools
|
2020-04-24 23:36:52 +00:00
|
|
|
, pyutil
|
2021-07-17 21:14:59 +00:00
|
|
|
, twisted
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zfec";
|
2024-01-13 08:15:51 +00:00
|
|
|
version = "1.5.7.4";
|
|
|
|
pyproject = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-01-13 08:15:51 +00:00
|
|
|
hash = "sha256-EGmFchj4ur5AhEOXEnIIA6Ef6RsU8gvHepak5vThER8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
propagatedBuildInputs = [ pyutil ];
|
|
|
|
|
2023-03-24 00:07:29 +00:00
|
|
|
nativeCheckInputs = [ twisted ];
|
2021-07-17 21:14:59 +00:00
|
|
|
|
2023-03-24 00:07:29 +00:00
|
|
|
checkPhase = "trial zfec";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
pythonImportsCheck = [ "zfec" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2021-07-17 21:14:59 +00:00
|
|
|
homepage = "https://github.com/tahoe-lafs/zfec";
|
2020-04-24 23:36:52 +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;
|
2021-07-17 21:14:59 +00:00
|
|
|
maintainers = with maintainers; [ prusnak ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|