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