mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Add gyp python package
This commit is contained in:
parent
6a3ea47c4e
commit
7f4b27f464
@ -848,6 +848,27 @@ let pythonPackages = python.modules // rec {
|
||||
};
|
||||
|
||||
|
||||
gyp = buildPythonPackage rec {
|
||||
rev = "1435";
|
||||
name = "gyp-r${rev}";
|
||||
|
||||
src = fetchsvn {
|
||||
url = "http://gyp.googlecode.com/svn/trunk";
|
||||
inherit rev;
|
||||
sha256 = "1wmd1svx5344alb8ff9vzdam1ccqdl0h7shp1xnsk843hqwc0fz0";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
postUnpack = "find . -print0 | xargs -0 touch";
|
||||
|
||||
meta = {
|
||||
homepage = http://code.google.com/p/gyp;
|
||||
description = "Generate Your Projects";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
httplib2 = buildPythonPackage rec {
|
||||
name = "httplib2-0.6.0";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user