File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed
development/python-modules/dncil Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ lib ,
3+ buildPythonPackage ,
4+ fetchFromGitHub ,
5+ pytestCheckHook ,
6+ pythonOlder ,
7+ setuptools ,
8+ } :
9+
10+ buildPythonPackage rec {
11+ pname = "dncil" ;
12+ version = "1.0.2" ;
13+ pyproject = true ;
14+
15+ disabled = pythonOlder "3.8" ;
16+
17+ src = fetchFromGitHub {
18+ owner = "mandiant" ;
19+ repo = "dncil" ;
20+ rev = "refs/tags/v${ version } " ;
21+ hash = "sha256-bndkiXkIYTd071J+mgkmJmA+9J5yJ+9/oDfAypN7wYo=" ;
22+ } ;
23+
24+ build-system = [ setuptools ] ;
25+
26+ nativeCheckInputs = [ pytestCheckHook ] ;
27+
28+ pythonImportsCheck = [ "dncil" ] ;
29+
30+ meta = {
31+ description = "Module to disassemble Common Intermediate Language (CIL) instructions" ;
32+ homepage = "https://github.com/mandiant/dncil" ;
33+ changelog = "https://github.com/mandiant/dncil/releases/tag/v${ version } " ;
34+ license = lib . licenses . asl20 ;
35+ maintainers = with lib . maintainers ; [ fab ] ;
36+ } ;
37+ }
Original file line number Diff line number Diff line change @@ -3624,6 +3624,8 @@ self: super: with self; {
36243624
36253625 dnachisel = callPackage ../development/python-modules/dnachisel { };
36263626
3627+ dncil = callPackage ../development/python-modules/dncil { };
3628+
36273629 dnf-plugins-core = callPackage ../development/python-modules/dnf-plugins-core { };
36283630
36293631 dnf4 = callPackage ../development/python-modules/dnf4 { };
You can’t perform that action at this time.
0 commit comments