From 2427e9a0cce12c0550d04e4feae73a6a8ce41545 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 1 Nov 2022 04:20:00 +0000 Subject: [PATCH] python310Packages.pysqlcipher3: fix build pysqlcipher3 1.1.0 is compatible with Python 3.10 https://github.com/rigglemania/pysqlcipher3/pull/29 --- pkgs/development/python-modules/pysqlcipher3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pysqlcipher3/default.nix b/pkgs/development/python-modules/pysqlcipher3/default.nix index acb71deab0b1..cc8a53e8fcea 100644 --- a/pkgs/development/python-modules/pysqlcipher3/default.nix +++ b/pkgs/development/python-modules/pysqlcipher3/default.nix @@ -1,10 +1,10 @@ -{ lib, buildPythonPackage, fetchPypi, pythonAtLeast, sqlcipher }: +{ lib, buildPythonPackage, fetchPypi, pythonOlder, sqlcipher }: buildPythonPackage rec { pname = "pysqlcipher3"; version = "1.1.0"; - disabled = pythonAtLeast "3.9"; + disabled = pythonOlder "3.3"; src = fetchPypi { inherit pname version;