aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/impacket/default.nix
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2019-09-25 05:10:58 +0800
committerGitHub <noreply@github.com>2019-09-25 05:10:58 +0800
commit0de5df0343f1532307f925a3c365593ba143afa3 (patch)
tree8afdd8ab3c4fc2431d6ea5f7f999131628f3af60 /pkgs/development/python-modules/impacket/default.nix
parente121bf850364dddfcdf2664ca9d195064b667510 (diff)
parentffe12af49a1dfa8a9b18cddb665b1b824736493d (diff)
Merge pull request #69336 from peterhoeg/p/py-wmi
pythonPackages.py-wmi-client: init at unstable-20160601
Diffstat (limited to 'pkgs/development/python-modules/impacket/default.nix')
-rw-r--r--pkgs/development/python-modules/impacket/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/impacket/default.nix b/pkgs/development/python-modules/impacket/default.nix
new file mode 100644
index 00000000000..e4e14cf7bbf
--- /dev/null
+++ b/pkgs/development/python-modules/impacket/default.nix
@@ -0,0 +1,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 ];
+ };
+}