Merge pull request #199105 from marsam/fix-build-pysqlcipher3

python310Packages.pysqlcipher3: fix build
This commit is contained in:
Mario Rodas
2022-12-12 08:34:15 -05:00
committed by GitHub
@@ -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;