evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / subzerod / default.nix
blob49d59c66833d3e46f57d4918b19cdc071a0588fd
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchPypi,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "subzerod";
11   version = "1.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.8";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-/7g8Upj9Hb4m83JXLI3X2lqa9faCt42LVxh+V9WpI68=";
19   };
21   propagatedBuildInputs = [ aiohttp ];
23   # Module has no tests
24   doCheck = false;
26   pythonImportsCheck = [ "subzerod" ];
28   meta = with lib; {
29     description = "Python module to help with the enumeration of subdomains";
30     mainProgram = "subzerod";
31     homepage = "https://github.com/sanderfoobar/subzerod";
32     license = with licenses; [ wtfpl ];
33     maintainers = with maintainers; [ fab ];
34   };