1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6 bundlewrap, 7 pykeepass, 8}: 9 10buildPythonPackage rec { 11 pname = "bundlewrap-keepass"; 12 version = "0.1.0"; 13 pyproject = true; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-P41VtI8VIqSp1IXe7fzKDBGmmXmDLRm7v1qV1g35IC4"; 18 }; 19 20 nativeBuildInputs = [ setuptools ]; 21 22 propagatedBuildInputs = [ 23 bundlewrap 24 pykeepass 25 ]; 26 27 # upstream has no checks 28 doCheck = false; 29 30 pythonImportsCheck = [ "bwkeepass" ]; 31 32 meta = with lib; { 33 homepage = "https://pypi.org/project/bundlewrap-keepass"; 34 description = "Use secrets from keepass in your BundleWrap repo"; 35 license = licenses.gpl3; 36 maintainers = [ ]; 37 }; 38}