summary refs log tree commit diff
path: root/pkgs/development/python-modules/pgpdump
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-26 13:32:15 -0400
committerFrederik Rietdijk <fridh@fridh.nl>2018-10-27 09:07:24 +0200
commit162a894ec5af5c0cc1232cc6e39ac5dd12022b74 (patch)
treeaf8f5e9ac26739e6703903342e5846fdf2eacaeb /pkgs/development/python-modules/pgpdump
parent008612f0221e1aee920422ff27395e448212beab (diff)
downloadnixpkgs-162a894ec5af5c0cc1232cc6e39ac5dd12022b74.tar
nixpkgs-162a894ec5af5c0cc1232cc6e39ac5dd12022b74.tar.gz
nixpkgs-162a894ec5af5c0cc1232cc6e39ac5dd12022b74.tar.bz2
nixpkgs-162a894ec5af5c0cc1232cc6e39ac5dd12022b74.tar.lz
nixpkgs-162a894ec5af5c0cc1232cc6e39ac5dd12022b74.tar.xz
nixpkgs-162a894ec5af5c0cc1232cc6e39ac5dd12022b74.tar.zst
nixpkgs-162a894ec5af5c0cc1232cc6e39ac5dd12022b74.zip
pythonPackages.pgpdump: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/pgpdump')
-rw-r--r--pkgs/development/python-modules/pgpdump/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pgpdump/default.nix b/pkgs/development/python-modules/pgpdump/default.nix
new file mode 100644
index 00000000000..ea9ef0a156f
--- /dev/null
+++ b/pkgs/development/python-modules/pgpdump/default.nix
@@ -0,0 +1,24 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "pgpdump";
+  version = "1.5";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0s4nh8h7qsdj2yf29bspjs1zvxd4lcd11r6g11dp7fppgf2h0iqw";
+  };
+
+  # Disabling check because of: https://github.com/toofishes/python-pgpdump/issues/18
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "Python library for parsing PGP packets";
+    homepage = https://github.com/toofishes/python-pgpdump;
+    license = licenses.bsd3;
+  };
+
+}