Merge branch 'master' into staging-next
This commit is contained in:
commit
f37e8bf504
|
@ -1,15 +1,31 @@
|
||||||
{ lib, buildPythonApplication, fetchPypi, appdirs, attrs
|
{ lib
|
||||||
, beautifulsoup4, click-plugins, elasticsearch, flask-compress
|
, buildPythonApplication
|
||||||
, flask_login, flask_wtf, html2text, python-dotenv, python-frontmatter
|
, fetchPypi
|
||||||
, requests, tinydb, validators, werkzeug, wtforms }:
|
, appdirs
|
||||||
|
, attrs
|
||||||
|
, beautifulsoup4
|
||||||
|
, click-plugins
|
||||||
|
, elasticsearch
|
||||||
|
, flask-compress
|
||||||
|
, flask_login
|
||||||
|
, flask_wtf
|
||||||
|
, html2text
|
||||||
|
, python-dotenv
|
||||||
|
, python-frontmatter
|
||||||
|
, requests
|
||||||
|
, tinydb
|
||||||
|
, validators
|
||||||
|
, werkzeug
|
||||||
|
, wtforms
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "archivy";
|
pname = "archivy";
|
||||||
version = "1.1.1";
|
version = "1.1.4";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-yUXsTPb5oJYZA9MlHz7eLowRjD/ltq5VLTHeOMqcL/M=";
|
sha256 = "sha256-oSmwQcKvp9RABmc7aq6fdLOZapMauIi6+7azVTXVb30=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Relax some dependencies
|
# Relax some dependencies
|
||||||
|
@ -22,6 +38,7 @@ buildPythonApplication rec {
|
||||||
--replace 'python_frontmatter == 0.5.0' 'python_frontmatter' \
|
--replace 'python_frontmatter == 0.5.0' 'python_frontmatter' \
|
||||||
--replace 'requests ==' 'requests >=' \
|
--replace 'requests ==' 'requests >=' \
|
||||||
--replace 'validators ==' 'validators >=' \
|
--replace 'validators ==' 'validators >=' \
|
||||||
|
--replace 'tinydb ==' 'tinydb >='
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, karton-core
|
||||||
|
, malduck
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "karton-config-extractor";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "CERT-Polska";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1v0zqa81yjz6hm17x9hp0iwkllymqzn84dd6r2yrhillbwnjg9bb";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
karton-core
|
||||||
|
malduck
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace requirements.txt \
|
||||||
|
--replace "karton.core==4.0.5" "karton-core"
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "karton.config_extractor" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Static configuration extractor for the Karton framework";
|
||||||
|
homepage = "https://github.com/CERT-Polska/karton-config-extractor";
|
||||||
|
license = with licenses; [ bsd3 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,48 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, capstone
|
||||||
|
, click
|
||||||
|
, cryptography
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pefile
|
||||||
|
, pycryptodomex
|
||||||
|
, pyelftools
|
||||||
|
, pythonOlder
|
||||||
|
, typing-extensions
|
||||||
|
, yara-python
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "malduck";
|
||||||
|
version = "4.1.0";
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "CERT-Polska";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "04d8bhzax9ynbl83hif9i8gcs29zrvcay2r6n7mcxiixlxcqciak";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
capstone
|
||||||
|
click
|
||||||
|
cryptography
|
||||||
|
pefile
|
||||||
|
pycryptodomex
|
||||||
|
pyelftools
|
||||||
|
typing-extensions
|
||||||
|
yara-python
|
||||||
|
];
|
||||||
|
|
||||||
|
# Project has no tests. They will come with the next release
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "malduck" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Helper for malware analysis";
|
||||||
|
homepage = "https://github.com/CERT-Polska/malduck";
|
||||||
|
license = with licenses; [ bsd3 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2,10 +2,9 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, poetry
|
, poetry-core
|
||||||
|
, fetchpatch
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, pytestcov
|
|
||||||
, pytestrunner
|
|
||||||
, pycodestyle
|
, pycodestyle
|
||||||
, pyyaml
|
, pyyaml
|
||||||
}:
|
}:
|
||||||
|
@ -20,20 +19,37 @@ buildPythonPackage rec {
|
||||||
owner = "msiemens";
|
owner = "msiemens";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1z5gnffizgbyhh20jy63bkkjh20ih8d62kcfhiaqa6rvnnffqmnw";
|
sha256 = "sha256-3FbsnLU7G4VVhI5NYRqCEQgo51zDeAkEhH69H52zr/w=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ poetry ];
|
nativeBuildInputs = [
|
||||||
|
poetry-core
|
||||||
|
];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Switch to poetry-core, https://github.com/msiemens/tinydb/pull/391
|
||||||
|
(fetchpatch {
|
||||||
|
name = "switch-to-peotry-core.patch";
|
||||||
|
url = "https://github.com/msiemens/tinydb/commit/5b547c18e7ce9f5925d5943dfa47d408435a0da5.patch";
|
||||||
|
sha256 = "19ma9ib020b82sn1mcr7sfysqbj8h6nbb365bih1x1wn3ym8xlbc";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace pytest.ini \
|
||||||
|
--replace "--cov-append --cov-report term --cov tinydb" ""
|
||||||
|
'';
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
pytestcov
|
|
||||||
pycodestyle
|
pycodestyle
|
||||||
pyyaml
|
pyyaml
|
||||||
];
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "tinydb" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A lightweight document oriented database written in pure Python with no external dependencies";
|
description = "Lightweight document oriented database written in Python";
|
||||||
homepage = "https://tinydb.readthedocs.org/";
|
homepage = "https://tinydb.readthedocs.org/";
|
||||||
changelog = "https://tinydb.readthedocs.io/en/latest/changelog.html";
|
changelog = "https://tinydb.readthedocs.io/en/latest/changelog.html";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -3497,6 +3497,8 @@ in {
|
||||||
|
|
||||||
karton-classifier = callPackage ../development/python-modules/karton-classifier { };
|
karton-classifier = callPackage ../development/python-modules/karton-classifier { };
|
||||||
|
|
||||||
|
karton-config-extractor = callPackage ../development/python-modules/karton-config-extractor { };
|
||||||
|
|
||||||
karton-core = callPackage ../development/python-modules/karton-core { };
|
karton-core = callPackage ../development/python-modules/karton-core { };
|
||||||
|
|
||||||
karton-mwdb-reporter = callPackage ../development/python-modules/karton-mwdb-reporter { };
|
karton-mwdb-reporter = callPackage ../development/python-modules/karton-mwdb-reporter { };
|
||||||
|
@ -3927,6 +3929,8 @@ in {
|
||||||
|
|
||||||
Mako = callPackage ../development/python-modules/Mako { };
|
Mako = callPackage ../development/python-modules/Mako { };
|
||||||
|
|
||||||
|
malduck= callPackage ../development/python-modules/malduck { };
|
||||||
|
|
||||||
managesieve = callPackage ../development/python-modules/managesieve { };
|
managesieve = callPackage ../development/python-modules/managesieve { };
|
||||||
|
|
||||||
manhole = callPackage ../development/python-modules/manhole { };
|
manhole = callPackage ../development/python-modules/manhole { };
|
||||||
|
|
Loading…
Reference in New Issue