mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 14:47:06 +00:00
20 lines
435 B
Nix
20 lines
435 B
Nix
{ lib, buildPythonPackage, fetchPypi, requests }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hvac";
|
|
version = "0.2.15";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0qxa4g1ij1bj27mbp8l54lcr7d5krkb2rayisc6shkpf2b51ip4c";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
meta = with lib; {
|
|
description = "HashiCorp Vault API client";
|
|
homepage = https://github.com/ianunruh/hvac;
|
|
license = licenses.asl20;
|
|
};
|
|
}
|