mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 04:13:12 +00:00
python312Packages.msticpy: init at 2.14.0
Microsoft Threat Intelligence Security Tools https://github.com/microsoft/msticpy
This commit is contained in:
parent
f02092f187
commit
7c5423a666
122
pkgs/development/python-modules/msticpy/default.nix
Normal file
122
pkgs/development/python-modules/msticpy/default.nix
Normal file
@ -0,0 +1,122 @@
|
||||
{
|
||||
lib,
|
||||
attrs,
|
||||
azure-common,
|
||||
azure-core,
|
||||
azure-identity,
|
||||
azure-keyvault-secrets,
|
||||
azure-kusto-data,
|
||||
azure-mgmt-keyvault,
|
||||
azure-mgmt-subscription,
|
||||
azure-monitor-query,
|
||||
beautifulsoup4,
|
||||
bokeh,
|
||||
buildPythonPackage,
|
||||
cache,
|
||||
cryptography,
|
||||
deprecated,
|
||||
dnspython,
|
||||
fetchFromGitHub,
|
||||
folium,
|
||||
geoip2,
|
||||
html5lib,
|
||||
httpx,
|
||||
importlib-resources,
|
||||
ipython,
|
||||
ipywidgets,
|
||||
keyring,
|
||||
lxml,
|
||||
markdown,
|
||||
msal-extensions,
|
||||
msal,
|
||||
msrest,
|
||||
msrestazure,
|
||||
nest-asyncio,
|
||||
networkx,
|
||||
packaging,
|
||||
pandas,
|
||||
pydantic,
|
||||
pygments,
|
||||
pyjwt,
|
||||
pythonOlder,
|
||||
pyyaml,
|
||||
setuptools,
|
||||
tldextract,
|
||||
tqdm,
|
||||
typing-extensions,
|
||||
urllib3,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "msticpy";
|
||||
version = "2.14.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "microsoft";
|
||||
repo = "msticpy";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-9qTcXcgUxjSLbsWT7O9ilYuRRPPyN0v9NzUkbd4cIn0=";
|
||||
};
|
||||
|
||||
pythonRelaxDeps = [ "bokeh" ];
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
attrs
|
||||
azure-common
|
||||
azure-core
|
||||
azure-identity
|
||||
azure-keyvault-secrets
|
||||
azure-kusto-data
|
||||
azure-mgmt-keyvault
|
||||
azure-mgmt-subscription
|
||||
azure-monitor-query
|
||||
beautifulsoup4
|
||||
bokeh
|
||||
cryptography
|
||||
deprecated
|
||||
dnspython
|
||||
folium
|
||||
geoip2
|
||||
html5lib
|
||||
httpx
|
||||
importlib-resources
|
||||
ipython
|
||||
ipywidgets
|
||||
keyring
|
||||
lxml
|
||||
msal
|
||||
msal-extensions
|
||||
msrest
|
||||
msrestazure
|
||||
nest-asyncio
|
||||
networkx
|
||||
packaging
|
||||
pandas
|
||||
pydantic
|
||||
pygments
|
||||
pyjwt
|
||||
pyyaml
|
||||
tldextract
|
||||
tqdm
|
||||
typing-extensions
|
||||
urllib3
|
||||
];
|
||||
|
||||
# Test requires network access
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "msticpy" ];
|
||||
|
||||
meta = {
|
||||
description = "Microsoft Threat Intelligence Security Tools";
|
||||
homepage = "https://github.com/microsoft/msticpy";
|
||||
changelog = "https://github.com/microsoft/msticpy/releases/tag/v${version}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -8443,6 +8443,8 @@ self: super: with self; {
|
||||
|
||||
mss = callPackage ../development/python-modules/mss { };
|
||||
|
||||
msticpy = callPackage ../development/python-modules/msticpy { };
|
||||
|
||||
msrestazure = callPackage ../development/python-modules/msrestazure { };
|
||||
|
||||
msrest = callPackage ../development/python-modules/msrest { };
|
||||
|
Loading…
Reference in New Issue
Block a user