Merge pull request #233072 from rhendric/rhendric/python311Packages.fn

python311Packages.fn: disable
This commit is contained in:
Stanisław Pitucha 2023-05-21 09:09:43 +10:00 committed by GitHub
commit cd9d7ed885
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,12 +2,17 @@
, buildPythonPackage
, fetchpatch
, fetchPypi
, pythonAtLeast
}:
buildPythonPackage rec {
pname = "fn";
version = "0.4.3";
# Python 3.11 changed the API of the `inspect` module and fn was never
# updated to adapt; last commit was in 2014.
disabled = pythonAtLeast "3.11";
src = fetchPypi {
inherit pname version;
sha256 = "1nmsjmn8jb4gp22ksx0j0hhdf4y0zm8rjykyy2i6flzimg6q1kgq";