$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
29 lines
550 B
Nix
29 lines
550 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
sqlcipher,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pysqlcipher3";
|
|
version = "1.2.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-PIAzgSZVlH6/KagJrFEGsrxpvgJ06szva1j0WAyNBsU=";
|
|
};
|
|
|
|
buildInputs = [ sqlcipher ];
|
|
|
|
pythonImportsCheck = [ "pysqlcipher3" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python 3 bindings for SQLCipher";
|
|
homepage = "https://github.com/rigglemania/pysqlcipher3/";
|
|
license = licenses.zlib;
|
|
maintainers = [ ];
|
|
};
|
|
}
|