Merge pull request #128680 from fabaff/bump-knockpy

knockpy: 5.0.0 -> 5.1.0
launchpad/nixpkgs/master
Sandro 3 years ago committed by GitHub
commit 8f4be49775
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      pkgs/tools/security/knockpy/default.nix

@ -5,30 +5,28 @@
python3.pkgs.buildPythonApplication rec {
pname = "knockpy";
version = "5.0.0";
version = "5.1.0";
disabled = python3.pythonOlder "3.6";
src = fetchFromGitHub {
owner = "guelfoweb";
repo = "knock";
rev = version;
sha256 = "1h7sibdxx8y53xm1wydyng418n4j6baiys257msq03cs04jlm7h9";
sha256 = "sha256-4W6/omGPmQFuZ/2AVNgCs2q0ti/P8OY4o7b4/g9q+Rc=";
};
propagatedBuildInputs = with python3.pkgs; [
beautifulsoup4
colorama
matplotlib
networkx
pyqt5
requests
];
postPatch = ''
# https://github.com/guelfoweb/knock/pull/95
substituteInPlace setup.py \
--replace "bs4" "beautifulsoup4"
'';
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "knockpy" ];
meta = with lib; {

Loading…
Cancel
Save