factoriolab: init at 3.8.1 (#358014)
[NixPkgs.git] / pkgs / tools / networking / nxdomain / default.nix
blob071f236bfe5f888ce0465f82bde89c275a29290a
1 { lib, buildPythonApplication, fetchPypi, dnspython, pytestCheckHook }:
3 buildPythonApplication rec {
4   pname = "nxdomain";
5   version = "1.0.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0va7nkbdjgzrf7fnbxkh1140pbc62wyj86rdrrh5wmg3phiziqkb";
10   };
12   propagatedBuildInputs = [ dnspython ];
14   nativeCheckInputs = [ pytestCheckHook ];
16   postCheck = ''
17     echo example.org > simple.list
18     python -m nxdomain --format dnsmasq --out dnsmasq.conf --simple ./simple.list
19     grep -q 'address=/example.org/' dnsmasq.conf
20   '';
22   meta = with lib; {
23     homepage = "https://github.com/zopieux/nxdomain";
24     description = "Domain (ad) block list creator";
25     mainProgram = "nxdomain";
26     platforms = platforms.all;
27     license = licenses.gpl3Only;
28     maintainers = with maintainers; [ zopieux ];
29   };