1{ stdenv, buildPythonPackage, fetchPypi, cryptography, boto3, pyyaml, docutils }:
2
3buildPythonPackage rec {
4 pname = "credstash";
5 version = "1.13.3";
6 name = "${pname}-${version}";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "1x2dh4rs5sahb8h2xznhq7srcm2zl9ykc72a8iqpq4dz7l9k7x7i";
11 };
12
13 propagatedBuildInputs = [ cryptography boto3 pyyaml docutils ];
14
15 # No tests in archive
16 doCheck = false;
17
18 meta = with stdenv.lib; {
19 description = "A utility for managing secrets in the cloud using AWS KMS and DynamoDB";
20 homepage = https://github.com/LuminalOSS/credstash;
21 license = licenses.asl20;
22 };
23}