mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #150033 from fabaff/subzerod
python3Packages.subzerod: init at 1.0
This commit is contained in:
commit
15f8e1e630
3 changed files with 41 additions and 0 deletions
37
pkgs/development/python-modules/subzerod/default.nix
Normal file
37
pkgs/development/python-modules/subzerod/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "subzerod";
|
||||
version = "1.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-/7g8Upj9Hb4m83JXLI3X2lqa9faCt42LVxh+V9WpI68=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"subzerod"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module to help with the enumeration of subdomains";
|
||||
homepage = "https://github.com/sanderfoobar/subzerod";
|
||||
license = with licenses; [ wtfpl ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -9894,6 +9894,8 @@ with pkgs;
|
|||
|
||||
subfinder = callPackage ../tools/networking/subfinder { };
|
||||
|
||||
subzerod = with python3Packages; toPythonApplication subzerod;
|
||||
|
||||
suckit = callPackage ../tools/networking/suckit {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
|
|
@ -9221,6 +9221,8 @@ in {
|
|||
|
||||
subunit2sql = callPackage ../development/python-modules/subunit2sql { };
|
||||
|
||||
subzerod = callPackage ../development/python-modules/subzerod { };
|
||||
|
||||
suds-jurko = callPackage ../development/python-modules/suds-jurko { };
|
||||
|
||||
sumo = callPackage ../development/python-modules/sumo { };
|
||||
|
|
Loading…
Reference in a new issue