nixpkgs/pkgs/development/python-modules/reedsolo/default.nix
Yorick van Pelt 9ca12dc4c7 python3Packages.reedsolo: init at 1.5.4
reedsolo: maintain, add tests, fix cython

reedsolo: Apply suggestions from code review

Co-authored-by: Jonathan Ringer <jonringer@users.noreply.github.com>
2020-11-17 16:41:17 -08:00

28 lines
788 B
Nix

{ stdenv, buildPythonPackage, fetchFromGitHub, cython, nose }:
buildPythonPackage rec {
pname = "reedsolo";
version = "1.5.4";
# Pypi does not have the tests
src = fetchFromGitHub {
owner = "tomerfiliba";
repo = "reedsolomon";
# https://github.com/tomerfiliba/reedsolomon/issues/28
rev = "73926cdf81b39009bd6e46c8d49f3bbc0eaad4e4";
sha256 = "03wrr0c32dsl7h9k794b8fwnyzklvmxgriy49mjvvd3val829cc1";
};
nativeBuildInputs = [ cython ];
checkInputs = [ nose ];
checkPhase = "nosetests";
meta = with stdenv.lib; {
description = "Pure-python universal errors-and-erasures Reed-Solomon Codec";
homepage = "https://github.com/tomerfiliba/reedsolomon";
license = licenses.publicDomain;
maintainers = with maintainers; [ yorickvp ];
};
}