about summary refs log tree commit diff
path: root/pkgs/development/python-modules/bundlewrap-keepass/default.nix
blob: a738b0aa9e75f811391d7789384e5a3ed5131872 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
  bundlewrap,
  pykeepass,
}:

buildPythonPackage rec {
  pname = "bundlewrap-keepass";
  version = "0.1.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-P41VtI8VIqSp1IXe7fzKDBGmmXmDLRm7v1qV1g35IC4";
  };

  nativeBuildInputs = [ setuptools ];

  propagatedBuildInputs = [
    bundlewrap
    pykeepass
  ];

  # upstream has no checks
  doCheck = false;

  pythonImportsCheck = [ "bwkeepass" ];

  meta = with lib; {
    homepage = "https://pypi.org/project/bundlewrap-keepass";
    description = "Use secrets from keepass in your BundleWrap repo";
    license = licenses.gpl3;
    maintainers = with maintainers; [ ];
  };
}