python3Packages.scalib: init at 0.6.4 (#503404)

This commit is contained in:
Sandro
2026-05-16 01:34:02 +00:00
committed by GitHub
2 changed files with 82 additions and 0 deletions
@@ -0,0 +1,80 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
rustPlatform,
setuptools,
setuptools-scm,
cargo,
rustc,
setuptools-rust,
numpy,
pytestCheckHook,
pytest-cov-stub,
scikit-learn,
scipy,
}:
buildPythonPackage (finalAttrs: {
pname = "scalib";
version = "0.6.4";
pyproject = true;
src = fetchFromGitHub {
owner = "simple-crypto";
repo = "SCALib";
tag = "v${finalAttrs.version}";
hash = "sha256-DVXb93W0TmOcyGyMN5GmIJNAdbLeeFnNm+3QfTw2j5s=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail '"setuptools-scm-git-archive",' ""
'';
cargoDeps = rustPlatform.fetchCargoVendor {
inherit (finalAttrs)
pname
version
src
cargoRoot
;
hash = "sha256-mzzp5EnaBYIbGGxJ9mJ6dqRVcTDS406BRx7hWVZ11SY=";
};
cargoRoot = "src/scalib_ext";
build-system = [
setuptools
setuptools-scm
];
nativeBuildInputs = [
cargo
rustPlatform.cargoSetupHook
rustc
setuptools-rust
];
dependencies = [
numpy
];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
scikit-learn
scipy
numpy
];
meta = {
description = "Side-Channel Analysis Library";
homepage = "https://github.com/simple-crypto/scalib";
changelog = "https://github.com/simple-crypto/SCALib/blob/${finalAttrs.src.tag}/CHANGELOG.rst";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ d-brasher ];
};
})
+2
View File
@@ -17450,6 +17450,8 @@ self: super: with self; {
scales = callPackage ../development/python-modules/scales { };
scalib = callPackage ../development/python-modules/scalib { };
scancode-toolkit = callPackage ../development/python-modules/scancode-toolkit { };
scanpy = callPackage ../development/python-modules/scanpy { };