1 { lib, buildPythonPackage, fetchPypi, pythonOlder, sqlcipher }:
3 buildPythonPackage rec {
4 pname = "pysqlcipher3";
8 disabled = pythonOlder "3.3";
11 inherit pname version;
12 hash = "sha256-PIAzgSZVlH6/KagJrFEGsrxpvgJ06szva1j0WAyNBsU=";
15 buildInputs = [ sqlcipher ];
17 pythonImportsCheck = [ "pysqlcipher3" ];
20 description = "Python 3 bindings for SQLCipher";
21 homepage = "https://github.com/rigglemania/pysqlcipher3/";
22 license = licenses.zlib;
23 maintainers = with maintainers; [ ];