summary refs log tree commit diff
path: root/pkgs/development/python-modules/credstash
diff options
context:
space:
mode:
authorSamuel Leathers <sam@appliedtrust.com>2017-09-13 21:30:40 -0400
committerSamuel Leathers <sam@appliedtrust.com>2017-09-14 03:47:04 -0400
commitdabf89fadddd334aeefe033991c91c9232bd0cc6 (patch)
tree7b195c5dae65e3ad798e46c2c2f10fbe938f3f7e /pkgs/development/python-modules/credstash
parenta7637b37955f1beacfe6c0b153fb11e086bb4762 (diff)
downloadnixpkgs-dabf89fadddd334aeefe033991c91c9232bd0cc6.tar
nixpkgs-dabf89fadddd334aeefe033991c91c9232bd0cc6.tar.gz
nixpkgs-dabf89fadddd334aeefe033991c91c9232bd0cc6.tar.bz2
nixpkgs-dabf89fadddd334aeefe033991c91c9232bd0cc6.tar.lz
nixpkgs-dabf89fadddd334aeefe033991c91c9232bd0cc6.tar.xz
nixpkgs-dabf89fadddd334aeefe033991c91c9232bd0cc6.tar.zst
nixpkgs-dabf89fadddd334aeefe033991c91c9232bd0cc6.zip
credstash: 1.13.2 -> 1.13.3
Diffstat (limited to 'pkgs/development/python-modules/credstash')
-rw-r--r--pkgs/development/python-modules/credstash/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/credstash/default.nix b/pkgs/development/python-modules/credstash/default.nix
new file mode 100644
index 00000000000..9f61018ceab
--- /dev/null
+++ b/pkgs/development/python-modules/credstash/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildPythonPackage, fetchPypi, cryptography, boto3, pyyaml, docutils }:
+
+buildPythonPackage rec {
+  pname    = "credstash";
+  version = "1.13.3";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1x2dh4rs5sahb8h2xznhq7srcm2zl9ykc72a8iqpq4dz7l9k7x7i";
+  };
+
+  propagatedBuildInputs = [ cryptography boto3 pyyaml docutils ];
+
+  # No tests in archive
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "A utility for managing secrets in the cloud using AWS KMS and DynamoDB";
+    homepage = https://github.com/LuminalOSS/credstash;
+    license = licenses.asl20;
+  };
+}