crun: 1.8.3 -> 1.8.4
[NixPkgs.git] / pkgs / tools / networking / nxdomain / default.nix
bloba90c7f0c23ae63933528d9c079e282363437952d
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 = "A domain (ad) block list creator";
25     platforms = platforms.all;
26     license = licenses.gpl3Only;
27     maintainers = with maintainers; [ zopieux ];
28   };