summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/dnslib/default.nix
blob: b451a964d90fa2346118d5035850d120ca7e6be7 (plain)
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
{
  lib,
  python,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "dnslib";
  version = "0.9.26";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-vlaFdTQ5Cy+9ApNScAGbrMXmtBHRVss5IaxVp/tR8ag=";
  };

  checkPhase = ''
    VERSIONS=${python.interpreter} ./run_tests.sh
  '';

  pythonImportsCheck = [ "dnslib" ];

  meta = {
    description = "Simple library to encode/decode DNS wire-format packets";
    homepage = "https://github.com/paulc/dnslib";
    license = lib.licenses.bsd2;
    maintainers = [ ];
  };
}