python312Pakcages.dncil: init at 1.0.2 (#350438)

This commit is contained in:
Fabian Affolter 2024-10-22 16:15:31 +02:00 committed by GitHub
commit deb5e0e4eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "dncil";
version = "1.0.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "mandiant";
repo = "dncil";
rev = "refs/tags/v${version}";
hash = "sha256-bndkiXkIYTd071J+mgkmJmA+9J5yJ+9/oDfAypN7wYo=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "dncil" ];
meta = {
description = "Module to disassemble Common Intermediate Language (CIL) instructions";
homepage = "https://github.com/mandiant/dncil";
changelog = "https://github.com/mandiant/dncil/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}

View File

@ -3624,6 +3624,8 @@ self: super: with self; {
dnachisel = callPackage ../development/python-modules/dnachisel { };
dncil = callPackage ../development/python-modules/dncil { };
dnf-plugins-core = callPackage ../development/python-modules/dnf-plugins-core { };
dnf4 = callPackage ../development/python-modules/dnf4 { };