python3Packages.licomp-osadl: init at 0.5.1
Assisted-By: nix-init
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
|
||||
# build-system
|
||||
setuptools,
|
||||
|
||||
# dependencies
|
||||
licomp,
|
||||
|
||||
# tests
|
||||
pytestCheckHook,
|
||||
jsonschema,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "licomp-osadl";
|
||||
version = "0.5.1";
|
||||
pyproject = true;
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hesa";
|
||||
repo = "licomp-osadl";
|
||||
tag = finalAttrs.version;
|
||||
hash = "sha256-aWJG7HxYs/8/Km3EpY8/XewCILlgePoKsdJyL8CM6LI=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
licomp
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
jsonschema
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"licomp_osadl"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Implementation of Licomp using OSADL's matrix";
|
||||
homepage = "https://github.com/hesa/licomp-osadl";
|
||||
changelog = "https://github.com/hesa/licomp-osadl/releases/tag/${finalAttrs.src.tag}";
|
||||
license = with lib.licenses; [
|
||||
cc-by-40
|
||||
gpl3Plus
|
||||
];
|
||||
maintainers = with lib.maintainers; [ eljamm ];
|
||||
teams = with lib.teams; [ ngi ];
|
||||
};
|
||||
})
|
||||
@@ -9069,6 +9069,8 @@ self: super: with self; {
|
||||
|
||||
licomp-hermione = callPackage ../development/python-modules/licomp-hermione { };
|
||||
|
||||
licomp-osadl = callPackage ../development/python-modules/licomp-osadl { };
|
||||
|
||||
lida = callPackage ../development/python-modules/lida { };
|
||||
|
||||
lief = (toPythonModule (pkgs.lief.override { python3 = python; })).py;
|
||||
|
||||
Reference in New Issue
Block a user