nixpkgs/pkgs/development/python-modules/reedsolo/default.nix
2023-09-27 15:34:18 +02:00

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 ];
};
}