websecprobe: 0.0.11 -> 0.0.12

This commit is contained in:
Fabian Affolter 2024-03-25 12:07:26 +01:00
parent b0c93fc5a3
commit 484c41edac
1 changed files with 4 additions and 4 deletions

View File

@ -5,20 +5,20 @@
python3.pkgs.buildPythonApplication rec {
pname = "websecprobe";
version = "0.0.11";
version = "0.0.12";
pyproject = true;
src = fetchPypi {
pname = "WebSecProbe";
inherit version;
hash = "sha256-OKbKz3HSTtwyx/JNUtLJBTaHQcxkUWroMg9/msVWgk4=";
hash = "sha256-RX4tc6JaUVaNx8nidn8eMcbsmbcSY+VZbup6c6P7oOs=";
};
nativeBuildInputs = with python3.pkgs; [
build-system = with python3.pkgs; [
setuptools
];
propagatedBuildInputs = with python3.pkgs; [
dependencies = with python3.pkgs; [
requests
tabulate
];