Files
nixpkgs/pkgs/development/python2-packages/flup/default.nix
Marc Weber 8c0b7e4ad2 - adding experimental python31 build
- cleanup python libraries:
 * moving all python libraries into a attr set into a directory
   so that expressions can be used for both: python 2.5 and 2.6 easily
 * disabling packages which don't build

svn path=/nixpkgs/trunk/; revision=21142
2010-04-17 18:28:25 +00:00

19 lines
432 B
Nix

{ stdenv, fetchurl, python, setuptools, ... }:
rec {
name = "flup-1.0.2";
src = fetchurl {
url = "http://www.saddi.com/software/flup/dist/${name}.tar.gz";
sha256 = "1nbx174g40l1z3a8arw72qz05a1qxi3didp9wm7kvkn1bxx33bab";
};
buildInputs = [ python setuptools ];
phaseNames = ["addInputs" "createPythonInstallationTarget" "installPythonPackage"];
meta = {
description = "FastCGI Python module set";
};
}