Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 24 lines 594 B view raw
1{ lib, buildPythonPackage, fetchPypi, isPy3k }: 2 3buildPythonPackage rec { 4 pname = "impacket"; 5 version = "0.9.20"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "43ebdb62e179113a55ccd4297316532582be71857b85d85ba187cd6146757397"; 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 }; 24}