Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 616 B view raw
1{ lib, buildPythonPackage, fetchPypi, isPy3k }: 2 3buildPythonPackage rec { 4 pname = "impacket"; 5 version = "0.9.21"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "912f812564e87c31a162cfe0626f3a6cbc5b6864deedbfefc31f6d321859ade3"; 10 }; 11 12 disabled = isPy3k; 13 14 # no tests 15 doCheck = false; 16 17 meta = with lib; { 18 description = "Network protocols Constructors and Dissectors"; 19 homepage = "https://github.com/CoreSecurity/impacket"; 20 # Modified Apache Software License, Version 1.1 21 license = licenses.free; 22 maintainers = with maintainers; [ peterhoeg ]; 23 broken = !isPy3k; 24 }; 25}