Merge pull request #292541 from fabaff/knockpy-bump

knockpy: 6.1.0 -> 7.0.0
This commit is contained in:
Fabian Affolter 2024-03-01 14:14:25 +01:00 committed by GitHub
commit f3cd7893d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,30 +5,39 @@
python3.pkgs.buildPythonApplication rec {
pname = "knockpy";
version = "6.1.0";
format = "setuptools";
version = "7.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "guelfoweb";
repo = "knock";
rev = "refs/tags/${version}";
hash = "sha256-O4tXq4pDzuTBEGAls2I9bfBRdHssF4rFBec4OtfUx6A=";
hash = "sha256-Xtv7K19OBS2iHFFoSasNcy9VLL15eQ8AD79wAEhxCHk=";
};
pythonRelaxDeps = [
"beautifulsoup4"
"tqdm"
];
nativeBuildInputs = with python3.pkgs; [
pythonRelaxDepsHook
setuptools
];
propagatedBuildInputs = with python3.pkgs; [
beautifulsoup4
colorama
matplotlib
networkx
pyqt5
dnspython
pyopenssl
requests
tqdm
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"knockpy"
"knock"
];
meta = with lib; {