depot/third_party/nixpkgs/pkgs/development/python-modules/zfec/default.nix
Default email 23b612e36f Project import generated by Copybara.
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
2024-01-25 23:12:00 +09:00

56 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, hypothesis
, pyutil
, setuptools
, 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 = [
hypothesis
twisted
];
checkPhase = ''
trial zfec
'';
pythonImportsCheck = [
"zfec"
];
meta = with lib; {
homepage = "https://github.com/tahoe-lafs/zfec";
description = "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 ];
};
}