nixpkgs/pkgs/development/python-modules/credstash/default.nix

24 lines
647 B
Nix
Raw Normal View History

2017-09-14 01:30:40 +00:00
{ stdenv, buildPythonPackage, fetchPypi, cryptography, boto3, pyyaml, docutils }:
buildPythonPackage rec {
pname = "credstash";
2017-12-30 11:21:54 +00:00
version = "1.14.0";
2017-09-14 01:30:40 +00:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-12-30 11:21:54 +00:00
sha256 = "718b337f7a6fa001e014386071f05c59900525d0507009126d2fe8d75fe0761d";
2017-09-14 01:30:40 +00: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;
};
}