10 buildPythonPackage rec {
11 pname = "pysqlitecipher";
14 disabled = pythonOlder "3.6";
16 format = "setuptools";
19 inherit pname version;
20 sha256 = "daff63ca2719fbd698aa10f64493c4b31fb67877a8e8dbb8090e9c03a1b1a9e4";
23 propagatedBuildInputs = [
28 # upstream has no tests
31 pythonImportsCheck = [ "pysqlitecipher" ];
34 description = "Lightweight and easy to use sqlite wrapper with built-in encryption system";
35 homepage = "https://github.com/harshnative/pysqlitecipher";
36 license = lib.licenses.gpl3Only;
37 maintainers = with lib.maintainers; [ dotlambda ];