pythonPackages.patator: init at 0.7
This commit is contained in:
parent
38719d170d
commit
0725d666d6
2 changed files with 42 additions and 0 deletions
40
pkgs/development/python-modules/patator/default.nix
Normal file
40
pkgs/development/python-modules/patator/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ stdenv, buildPythonPackage, isPy3k, fetchPypi,
|
||||
paramiko, pycurl, ajpy, pyopenssl, cx_oracle, mysqlclient,
|
||||
psycopg2, pycrypto, dnspython, ipy, pysnmp, pyasn1 }:
|
||||
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "patator";
|
||||
version = "0.7";
|
||||
disabled = !(isPy3k);
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "335e432e6cc591437e316ba8c1da935484ca39fc79e595ccf60ccd9166e965f1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
paramiko
|
||||
pycurl
|
||||
ajpy
|
||||
pyopenssl
|
||||
cx_oracle
|
||||
mysqlclient
|
||||
psycopg2
|
||||
pycrypto
|
||||
dnspython
|
||||
ipy
|
||||
pysnmp
|
||||
pyasn1
|
||||
];
|
||||
|
||||
# No tests provided by patator
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "multi-purpose brute-forcer";
|
||||
homepage = "https://github.com/lanjelot/patator";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ y0no ];
|
||||
};
|
||||
}
|
|
@ -11792,6 +11792,8 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
patator = callPackage ../development/python-modules/patator { };
|
||||
|
||||
pathlib = buildPythonPackage rec {
|
||||
name = "pathlib-${version}";
|
||||
version = "1.0.1";
|
||||
|
|
Loading…
Reference in a new issue