mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
57 lines
1.1 KiB
Nix
57 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
setuptools-scm,
|
|
pythonOlder,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
pytest-xdist,
|
|
numpy,
|
|
numba,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "galois";
|
|
version = "0.4.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mhostetter";
|
|
repo = "galois";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-DbmrrNw7XwTL4i6pJIfkBOUs+KGEmdV2FmQa1xfOHYU=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"numpy"
|
|
"numba"
|
|
];
|
|
|
|
build-system = [ setuptools-scm ];
|
|
|
|
dependencies = [
|
|
numpy
|
|
numba
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-xdist
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|