python3Packages.gyp: 2020-05-12 -> unstable-2022-04-01
This commit is contained in:
parent
a15f7ddc28
commit
7986ff22a0
1 changed files with 14 additions and 6 deletions
|
@ -1,16 +1,19 @@
|
||||||
{ lib, stdenv
|
{ lib
|
||||||
|
, stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitiles
|
, fetchFromGitiles
|
||||||
|
, six
|
||||||
|
, python
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage {
|
buildPythonPackage {
|
||||||
pname = "gyp";
|
pname = "gyp";
|
||||||
version = "2020-05-12";
|
version = "unstable-2022-04-01";
|
||||||
|
|
||||||
src = fetchFromGitiles {
|
src = fetchFromGitiles {
|
||||||
url = "https://chromium.googlesource.com/external/gyp";
|
url = "https://chromium.googlesource.com/external/gyp";
|
||||||
rev = "caa60026e223fc501e8b337fd5086ece4028b1c6";
|
rev = "9ecf45e37677743503342ee4c6a76eaee80e4a7f";
|
||||||
sha256 = "0r9phq5yrmj968vdvy9vivli35wn1j9a6iwshp69wl7q4p0x8q2b";
|
hash = "sha256-LUlF2VhRnuDwJLdITgmXIQV/IuKdx1KXQkiPVHKrl4Q=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = lib.optionals stdenv.isDarwin [
|
patches = lib.optionals stdenv.isDarwin [
|
||||||
|
@ -18,11 +21,16 @@ buildPythonPackage {
|
||||||
./no-xcode.patch
|
./no-xcode.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "gyp" "gyp.generator" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A tool to generate native build files";
|
description = "A tool to generate native build files";
|
||||||
homepage = "https://chromium.googlesource.com/external/gyp/+/master/README.md";
|
homepage = "https://gyp.gsrc.io";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ codyopel ];
|
maintainers = with maintainers; [ codyopel ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue