nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 aiohttp,
4 buildPythonPackage,
5 fetchPypi,
6}:
7
8buildPythonPackage rec {
9 pname = "subzerod";
10 version = "1.0";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-/7g8Upj9Hb4m83JXLI3X2lqa9faCt42LVxh+V9WpI68=";
16 };
17
18 propagatedBuildInputs = [ aiohttp ];
19
20 # Module has no tests
21 doCheck = false;
22
23 pythonImportsCheck = [ "subzerod" ];
24
25 meta = {
26 description = "Python module to help with the enumeration of subdomains";
27 mainProgram = "subzerod";
28 homepage = "https://github.com/sanderfoobar/subzerod";
29 license = with lib.licenses; [ wtfpl ];
30 maintainers = with lib.maintainers; [ fab ];
31 };
32}