2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, cryptography, boto3, pyyaml, docutils, nose }:
|
2017-09-14 02:30:40 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-03-18 11:53:48 +00:00
|
|
|
pname = "credstash";
|
2018-07-13 15:54:47 +01:00
|
|
|
version = "1.15.0";
|
2017-09-14 02:30:40 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-13 15:54:47 +01:00
|
|
|
sha256 = "814560f99ae2409e2c6d906d878f9dadada5d1d0a950aafb6b2c0d535291bdfb";
|
2017-09-14 02:30:40 +01:00
|
|
|
};
|
|
|
|
|
2018-07-13 15:54:47 +01:00
|
|
|
nativeBuildInputs = [ nose ];
|
2018-03-18 11:53:48 +00:00
|
|
|
|
2017-09-14 02:30:40 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|