depot/third_party/nixpkgs/pkgs/development/python-modules/pysqlcipher3/default.nix
Default email 5083ee08a2 Project import generated by Copybara.
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
2022-09-30 06:47:45 -05:00

24 lines
602 B
Nix

{ lib, buildPythonPackage, fetchPypi, pythonAtLeast, sqlcipher }:
buildPythonPackage rec {
pname = "pysqlcipher3";
version = "1.1.0";
disabled = pythonAtLeast "3.9";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Lo75+2y2jZJrQZj9xrJvVRGWmOo8fI5iXzEURn00Y3E=";
};
buildInputs = [ sqlcipher ];
pythonImportsCheck = [ "pysqlcipher3" ];
meta = with lib; {
description = "Python 3 bindings for SQLCipher";
homepage = "https://github.com/rigglemania/pysqlcipher3/";
license = licenses.zlib;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}