mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
41 lines
1013 B
Nix
41 lines
1013 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchpatch
|
|
, fetchFromGitHub
|
|
, cython
|
|
, nose
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "reedsolo";
|
|
version = "1.5.4";
|
|
|
|
# Pypi does not have the tests
|
|
src = fetchFromGitHub {
|
|
owner = "tomerfiliba";
|
|
repo = "reedsolomon";
|
|
rev = "v${version}";
|
|
hash = "sha256-GUMdL5HclXxqMYasq9kUE7fCqOkjr1D20wjd/E+xPBk=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
# python3.10 compat; https://github.com/tomerfiliba/reedsolomon/pull/38
|
|
url = "https://github.com/tomerfiliba/reedsolomon/commit/63e5bd9fc3ca503990c212eb2c77c10589e6d6c3.patch";
|
|
hash = "sha256-47g+jUsJEAyqGnlzRA1oSyc2XFPUOfH0EW+vcOJzsxI=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ cython ];
|
|
|
|
nativeCheckInputs = [ nose ];
|
|
checkPhase = "nosetests";
|
|
|
|
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 ];
|
|
};
|
|
}
|