aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/impacket/default.nix
blob: e4e14cf7bbf815cbadb079b886f0b6c48e630cbc (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
{ lib, buildPythonPackage, fetchPypi, isPy3k }:

buildPythonPackage rec {
  pname = "impacket";
  version = "0.9.15";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1sq1698g7wqj731h24f7gr4lc0fz0mxrqv6mm3j4hm2j6h3rrbr6";
  };

  disabled = isPy3k;

  # no tests
  doCheck = false;

  meta = with lib; {
    description = "Network protocols Constructors and Dissectors";
    homepage = "https://github.com/CoreSecurity/impacket";
    # Modified Apache Software License, Version 1.1
    license = licenses.free;
    maintainers = with maintainers; [ peterhoeg ];
  };
}