aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/python-gnupg
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/python-gnupg')
-rw-r--r--nixpkgs/pkgs/development/python-modules/python-gnupg/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/python-gnupg/default.nix b/nixpkgs/pkgs/development/python-modules/python-gnupg/default.nix
new file mode 100644
index 00000000000..17deff412cb
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/python-gnupg/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, buildPythonPackage, fetchPypi, gnupg }:
+
+buildPythonPackage rec {
+ pname = "python-gnupg";
+ version = "0.4.5";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "01gckjhvsmr6kfwfk4qdxm5jz8nq8zilbjhzpzpiab6d96cyalrk";
+ };
+
+ # Let's make the library default to our gpg binary
+ patchPhase = ''
+ substituteInPlace gnupg.py \
+ --replace "gpgbinary='gpg'" "gpgbinary='${gnupg}/bin/gpg'"
+ substituteInPlace test_gnupg.py \
+ --replace "gpgbinary=GPGBINARY" "gpgbinary='${gnupg}/bin/gpg'" \
+ --replace "test_search_keys" "disabled__test_search_keys"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A wrapper for the Gnu Privacy Guard";
+ homepage = "https://pypi.python.org/pypi/python-gnupg";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ copumpkin ];
+ platforms = platforms.unix;
+ };
+}