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.
59 lines
1.2 KiB
Nix
59 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, setuptools-scm
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pytest-xdist
|
|
, numpy
|
|
, numba
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "galois";
|
|
version = "0.3.2";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mhostetter";
|
|
repo = "galois";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-8YxC0QYZqgUIKlYLXnm5+tfojQOmOX63dD7cxBO+0Gg=";
|
|
};
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
numba
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-xdist
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "numpy >= 1.18.4, < 1.24" "numpy >= 1.18.4" \
|
|
--replace "numba >= 0.53, < 0.57" "numba >= 0.53" \
|
|
'';
|
|
|
|
pythonImportsCheck = [ "galois" ];
|
|
|
|
meta = {
|
|
description = "A Python 3 package that extends NumPy arrays to operate over finite fields";
|
|
homepage = "https://github.com/mhostetter/galois";
|
|
downloadPage = "https://github.com/mhostetter/galois/releases";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ chrispattison ];
|
|
};
|
|
}
|