pythonPackages.patator: Fix dependencies
This commit is contained in:
parent
aa1cbfe0da
commit
00956f5b73
@ -1,22 +1,28 @@
|
|||||||
{ stdenv, buildPythonPackage, isPy3k, fetchPypi,
|
{ stdenv, buildPythonPackage, isPy27, fetchPypi
|
||||||
paramiko, pycurl, ajpy, pyopenssl, cx_oracle, mysqlclient,
|
, paramiko, pycurl, ajpy, impacket, pyopenssl, cx_oracle, mysqlclient
|
||||||
psycopg2, pycrypto, dnspython, ipy, pysnmp, pyasn1 }:
|
, psycopg2, pycrypto, dnspython, ipy, pysnmp, pyasn1, pysqlcipher3 }:
|
||||||
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "patator";
|
pname = "patator";
|
||||||
version = "0.9";
|
version = "0.9";
|
||||||
disabled = !(isPy3k);
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "68cb24bdc3042ee0d47a288b19a8b99a6c54bdbd4ddf0c5817d9b9ac0a0d8a15";
|
sha256 = "68cb24bdc3042ee0d47a288b19a8b99a6c54bdbd4ddf0c5817d9b9ac0a0d8a15";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace requirements.txt \
|
||||||
|
--replace psycopg2-binary psycopg2
|
||||||
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
paramiko
|
paramiko
|
||||||
pycurl
|
pycurl
|
||||||
ajpy
|
ajpy
|
||||||
|
impacket
|
||||||
pyopenssl
|
pyopenssl
|
||||||
cx_oracle
|
cx_oracle
|
||||||
mysqlclient
|
mysqlclient
|
||||||
@ -26,15 +32,16 @@ buildPythonPackage rec {
|
|||||||
ipy
|
ipy
|
||||||
pysnmp
|
pysnmp
|
||||||
pyasn1
|
pyasn1
|
||||||
|
pysqlcipher3
|
||||||
];
|
];
|
||||||
|
|
||||||
# No tests provided by patator
|
# tests require docker-compose and vagrant
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "multi-purpose brute-forcer";
|
description = "multi-purpose brute-forcer";
|
||||||
homepage = "https://github.com/lanjelot/patator";
|
homepage = "https://github.com/lanjelot/patator";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = with maintainers; [ y0no ];
|
maintainers = with maintainers; [ y0no SuperSandro2000 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user