forked from mirrors/nixpkgs
pythonPackages.credstash: 1.11.0 -> 1.13.2
This commit is contained in:
parent
28c06567f8
commit
0be446fbfa
|
@ -4279,15 +4279,25 @@ in {
|
|||
};
|
||||
|
||||
credstash = buildPythonPackage rec {
|
||||
name = "credstash-${version}";
|
||||
version = "1.11.0";
|
||||
pname = "credstash";
|
||||
version = "1.13.2";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/e2/64/6abae87b8da07c262d50b51eed540096ed1f6e01539bf2f2d4c3f718c8c6/credstash-1.11.0.tar.gz";
|
||||
sha256 = "03qm8bjfskzkkmgcy5dr70x9pxabjb3fi0v0nxicg1kryy64k0dz";
|
||||
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
|
||||
sha256 = "b6283e565e3e441e8f74efcca54ece9697db16ce2e930fb5b6f7c0ab929c377e";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ pycrypto boto3 docutils ];
|
||||
propagatedBuildInputs = with self; [ cryptography boto3 pyyaml docutils ];
|
||||
|
||||
# No tests in archive
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "A utility for managing secrets in the cloud using AWS KMS and DynamoDB";
|
||||
homepage = https://github.com/LuminalOSS/credstash;
|
||||
license = licenses.asl20;
|
||||
};
|
||||
};
|
||||
|
||||
cython = buildPythonPackage rec {
|
||||
|
|
Loading…
Reference in a new issue