mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
* Added python-gflags.
svn path=/nixpkgs/trunk/; revision=26043
This commit is contained in:
parent
a37558d8df
commit
c4bc14bdd0
1 changed files with 14 additions and 0 deletions
|
@ -249,6 +249,20 @@ rec {
|
|||
};
|
||||
};
|
||||
|
||||
gflags = buildPythonPackage rec {
|
||||
name = "gflags-1.5.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://python-gflags.googlecode.com/files/python-${name}.tar.gz";
|
||||
sha256 = "1p8blsc3z1wasi9dhbjij7m2czps17dll3cpj37v97fv5ww7al9v";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://code.google.com/p/python-gflags/;
|
||||
description = "A module for command line handling, similar to Google's gflags for C++";
|
||||
};
|
||||
};
|
||||
|
||||
jinja2 = buildPythonPackage {
|
||||
name = "jinja2-2.2.1";
|
||||
|
||||
|
|
Loading…
Reference in a new issue