python37Packages.sqlmap: 1.4 -> 1.4.2 and fix bugs

This commit is contained in:
Benno Fünfstück 2020-02-06 15:55:01 +01:00
parent 1013c2e3a6
commit 67312c600f

View File

@ -1,17 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, stdenv
, file
}:
buildPythonPackage rec {
pname = "sqlmap";
version = "1.4";
version = "1.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "0s6lgp66bn0l4a5mwxiv9h04sa7braqvjskns315lb93lyb4y092";
sha256 = "12i5s3qs0lxfs06p5b354scbapldf4isfr00cg1dq47n4gnqwa99";
};
postPatch = ''
substituteInPlace sqlmap/thirdparty/magic/magic.py --replace "ctypes.util.find_library('magic')" \
"'${file}/lib/libmagic${stdenv.hostPlatform.extensions.sharedLibrary}'"
# the check for the last update date does not work in Nix,
# since the timestamp of the all files in the nix store is reset to the unix epoch
echo 'LAST_UPDATE_NAGGING_DAYS = float("inf")' >> sqlmap/lib/core/settings.py
'';
# No tests in archive
doCheck = false;