about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/subzerod/default.nix
blob: 3739e595e00c05ec714ff761a03e4eec8a64aec5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib
, aiohttp
, buildPythonPackage
, fetchPypi
, pythonOlder
}:

buildPythonPackage rec {
  pname = "subzerod";
  version = "1.0";
  format = "setuptools";

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "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";
    mainProgram = "subzerod";
    homepage = "https://github.com/sanderfoobar/subzerod";
    license = with licenses; [ wtfpl ];
    maintainers = with maintainers; [ fab ];
  };
}