nixpkgs/pkgs/development/libraries/py3c/default.nix

37 lines
774 B
Nix
Raw Normal View History

2021-04-29 15:49:33 +00:00
{ lib, stdenv, fetchFromGitHub, python2, python3 }:
stdenv.mkDerivation rec {
pname = "py3c";
version = "1.3.1";
src = fetchFromGitHub {
owner = "encukou";
repo = pname;
rev = "v${version}";
sha256 = "04i2z7hrig78clc59q3i1z2hh24g7z1bfvxznlzxv00d4s57nhpi";
};
2021-05-03 00:04:29 +00:00
postPatch = lib.optionalString stdenv.cc.isClang ''
substituteInPlace test/setup.py \
--replace "'-Werror', " ""
'';
2021-04-29 15:49:33 +00:00
makeFlags = [
"prefix=${placeholder "out"}"
];
doCheck = true;
checkInputs = [
python2
python3
];
meta = with lib; {
homepage = "https://github.com/encukou/py3c";
description = "Python 2/3 compatibility layer for C extensions";
license = licenses.mit;
2021-05-03 00:04:29 +00:00
maintainers = with maintainers; [ ajs124 dotlambda ];
2021-04-29 15:49:33 +00:00
};
}