mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
pythonPackages.pysqlcipher3: Init at 1.0.3
This commit is contained in:
parent
18c96c037b
commit
b4281d2cbf
24
pkgs/development/python-modules/pysqlcipher3/default.nix
Normal file
24
pkgs/development/python-modules/pysqlcipher3/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pythonAtLeast, sqlcipher }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pysqlcipher3";
|
||||
version = "1.0.3";
|
||||
|
||||
disabled = pythonAtLeast "3.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0c54m18h52llwkfc9zaag3qkmfzzp5a1w9jzsm5hd2nfdsxmnkk9";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -5690,6 +5690,10 @@ in {
|
||||
|
||||
pysptk = callPackage ../development/python-modules/pysptk { };
|
||||
|
||||
pysqlcipher3 = callPackage ../development/python-modules/pysqlcipher3 {
|
||||
inherit (pkgs) sqlcipher;
|
||||
};
|
||||
|
||||
pysqlite = callPackage ../development/python-modules/pysqlite { };
|
||||
|
||||
pysqueezebox = callPackage ../development/python-modules/pysqueezebox { };
|
||||
|
Loading…
Reference in New Issue
Block a user