nixpkgs/pkgs/development/libraries/py3c/default.nix
Martin Weinelt cc6a59f1de
py3c: pin to python311
Imports distutils and now activity on the repo in the last year.
2024-06-25 13:02:01 +02:00

39 lines
861 B
Nix

{ lib, stdenv, fetchFromGitHub, python311 }:
stdenv.mkDerivation rec {
pname = "py3c";
version = "1.4";
src = fetchFromGitHub {
owner = "encukou";
repo = pname;
rev = "v${version}";
sha256 = "sha256-v8+0J56sZVbGdBlOotObUa10/zFMTvfXdMYRsKhyZaY=";
};
postPatch = ''
# clang and gcc-11 complain about 'register' keywords used by
# python-2.7. Let's avoid blanket -Werror.
substituteInPlace test/setup.py \
--replace "'-Werror', " ""
'';
makeFlags = [
"prefix=${placeholder "out"}"
];
doCheck = true;
nativeCheckInputs = [
python311
];
checkTarget = "test-python";
meta = with lib; {
homepage = "https://github.com/encukou/py3c";
description = "Python 2/3 compatibility layer for C extensions";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}