mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
credstash: 1.13.2 -> 1.13.3
This commit is contained in:
parent
a7637b3795
commit
dabf89fadd
2 changed files with 24 additions and 21 deletions
23
pkgs/development/python-modules/credstash/default.nix
Normal file
23
pkgs/development/python-modules/credstash/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, cryptography, boto3, pyyaml, docutils }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "credstash";
|
||||
version = "1.13.3";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1x2dh4rs5sahb8h2xznhq7srcm2zl9ykc72a8iqpq4dz7l9k7x7i";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -3254,27 +3254,7 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
credstash = buildPythonPackage rec {
|
||||
pname = "credstash";
|
||||
version = "1.13.2";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
|
||||
sha256 = "b6283e565e3e441e8f74efcca54ece9697db16ce2e930fb5b6f7c0ab929c377e";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
};
|
||||
credstash = callPackage ../development/python-modules/credstash { };
|
||||
|
||||
cython = callPackage ../development/python-modules/Cython { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue