mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
46 lines
876 B
Nix
46 lines
876 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
|
|
# build-system
|
|
, cython
|
|
, setuptools
|
|
|
|
# tests
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "reedsolo";
|
|
version = "1.7.0";
|
|
format = "pyproject";
|
|
|
|
# Pypi does not have the tests
|
|
src = fetchFromGitHub {
|
|
owner = "tomerfiliba";
|
|
repo = "reedsolomon";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-nzdD1oGXHSeGDD/3PpQQEZYGAwn9ahD2KNYGqpgADh0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cython
|
|
setuptools
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"tests/test_creedsolo.py" # TODO: package creedsolo
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Pure-python universal errors-and-erasures Reed-Solomon Codec";
|
|
homepage = "https://github.com/tomerfiliba/reedsolomon";
|
|
license = licenses.publicDomain;
|
|
maintainers = with maintainers; [ yorickvp ];
|
|
};
|
|
}
|