Merge pull request #233036 from rhendric/rhendric/python311Packages.pygpgme
python311Packages.pygpgme: disable
This commit is contained in:
commit
959c0df85f
1 changed files with 11 additions and 3 deletions
|
@ -1,10 +1,18 @@
|
|||
{ lib, buildPythonPackage, fetchurl, isPyPy
|
||||
, gpgme }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchurl
|
||||
, gpgme
|
||||
, isPyPy
|
||||
, pythonAtLeast
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.3";
|
||||
pname = "pygpgme";
|
||||
disabled = isPyPy;
|
||||
|
||||
# Native code doesn't compile against the C API of Python 3.11:
|
||||
# https://bugs.launchpad.net/pygpgme/+bug/1996122
|
||||
disabled = isPyPy || pythonAtLeast "3.11";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://launchpad.net/pygpgme/trunk/${version}/+download/${pname}-${version}.tar.gz";
|
||||
|
|
Loading…
Reference in a new issue