blob: a2fb336f70b4d37c6610648ec8cbb7e804b4f996 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{ 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 ];
};
}
|