biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / bundlewrap-teamvault / default.nix
blobcf13c2730203316efcf817153bc860ac3742409c
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   bundlewrap,
7   passlib,
8   requests,
9 }:
11 buildPythonPackage rec {
12   pname = "bundlewrap-teamvault";
13   version = "3.1.5";
14   pyproject = true;
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-kwJnfPMIhQsahIZFVtFb/YFgMUrnDt8t8+eJrig/ZTU=";
19   };
21   nativeBuildInputs = [ setuptools ];
23   propagatedBuildInputs = [
24     bundlewrap
25     passlib
26     requests
27   ];
29   # upstream has no checks
30   doCheck = false;
32   pythonImportsCheck = [ "bwtv" ];
34   meta = with lib; {
35     homepage = "https://github.com/trehn/bundlewrap-teamvault";
36     description = "Pull secrets from TeamVault into your BundleWrap repo";
37     license = [ licenses.gpl3 ];
38     maintainers = [ ];
39   };