bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
setuptools-scm,
|
|
pythonOlder,
|
|
pythonRelaxDepsHook,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
pytest-xdist,
|
|
numpy,
|
|
numba,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "galois";
|
|
version = "0.3.9";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mhostetter";
|
|
repo = "galois";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-vgOsFEocgBvYba9Aq4HDYsnK1w+iQm1QDTzln68Tqss=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
numba
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-xdist
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"numpy"
|
|
"numba"
|
|
];
|
|
|
|
pythonImportsCheck = [ "galois" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python package that extends NumPy arrays to operate over finite fields";
|
|
homepage = "https://github.com/mhostetter/galois";
|
|
changelog = "https://github.com/mhostetter/galois/releases/tag/v${version}";
|
|
downloadPage = "https://github.com/mhostetter/galois/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ chrispattison ];
|
|
};
|
|
}
|