mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
python310Packages.pysqlitecipher: init at 0.22
This commit is contained in:
parent
0ccd98cae5
commit
3ac24f4835
38
pkgs/development/python-modules/pysqlitecipher/default.nix
Normal file
38
pkgs/development/python-modules/pysqlitecipher/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, cryptography
|
||||
, onetimepad
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pysqlitecipher";
|
||||
version = "0.22";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "daff63ca2719fbd698aa10f64493c4b31fb67877a8e8dbb8090e9c03a1b1a9e4";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cryptography
|
||||
onetimepad
|
||||
];
|
||||
|
||||
# upstream has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "pysqlitecipher" ];
|
||||
|
||||
meta = {
|
||||
description = "Lightweight and easy to use sqlite wrapper with built-in encryption system";
|
||||
homepage = "Ghttps://github.com/harshnative/pysqlitecipher";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
@ -6657,6 +6657,8 @@ in {
|
||||
|
||||
pysolcast = callPackage ../development/python-modules/pysolcast { };
|
||||
|
||||
pysqlitecipher = callPackage ../development/python-modules/pysqlitecipher { };
|
||||
|
||||
pysyncthru = callPackage ../development/python-modules/pysyncthru { };
|
||||
|
||||
python-codon-tables = callPackage ../development/python-modules/python-codon-tables { };
|
||||
|
Loading…
Reference in New Issue
Block a user