depot/third_party/nixpkgs/pkgs/development/python-modules/gyp/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

34 lines
894 B
Nix

{ stdenv
, buildPythonPackage
, fetchFromGitiles
, isPy3k
}:
buildPythonPackage {
pname = "gyp";
version = "2015-06-11";
disabled = isPy3k;
src = fetchFromGitiles {
url = "https://chromium.googlesource.com/external/gyp";
rev = "fdc7b812f99e48c00e9a487bd56751bbeae07043";
sha256 = "1imgxsl4mr1662vsj2mlnpvvrbz71yk00w8p85vi5bkgmc6awgiz";
};
prePatch = stdenv.lib.optionals stdenv.isDarwin ''
sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' pylib/gyp/xcode_emulation.py
'';
patches = stdenv.lib.optionals stdenv.isDarwin [
./no-darwin-cflags.patch
./no-xcode.patch
];
meta = with stdenv.lib; {
description = "A tool to generate native build files";
homepage = "https://chromium.googlesource.com/external/gyp/+/master/README.md";
license = licenses.bsd3;
maintainers = with maintainers; [ codyopel ];
};
}