11 buildPythonPackage rec {
12 pname = "pysigma-backend-sqlite";
16 disabled = pythonOlder "3.8";
18 src = fetchFromGitHub {
20 repo = "pySigma-backend-sqlite";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-wbFSgtsiP5k1aGJx8PWDl0N28r0dgn6Fduk0PuM8x3w=";
29 propagatedBuildInputs = [
38 pythonImportsCheck = [
39 "sigma.backends.sqlite"
43 description = "Library to support sqlite for pySigma";
44 homepage = "https://github.com/SigmaHQ/pySigma-backend-sqlite";
45 changelog = "https://github.com/SigmaHQ/pySigma-backend-sqlite/releases/tag/v${version}";
46 license = with licenses; [ lgpl3Only ];
47 maintainers = with maintainers; [ fab ];