1{ stdenv, buildPythonPackage, fetchPypi, cryptography, boto3, pyyaml, docutils }:
2
3buildPythonPackage rec {
4 pname = "credstash";
5 version = "1.14.0";
6 name = "${pname}-${version}";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "718b337f7a6fa001e014386071f05c59900525d0507009126d2fe8d75fe0761d";
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}