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
commit 7548a24fdf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;