summary refs log tree commit diff
path: root/pkgs/development/python-modules/pastedeploy/default.nix
blob: 433a67da51c9b5d98e9a7cd4b10e6c0211bf4b62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
}:

buildPythonPackage rec {
  version = "1.5.2";
  pname = "PasteDeploy";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d5858f89a255e6294e63ed46b73613c56e3b9a2d82a42f1df4d06c8421a9e3cb";
  };

  buildInputs = [ nose ];

  meta = with stdenv.lib; {
    description = "Load, configure, and compose WSGI applications and servers";
    homepage = http://pythonpaste.org/deploy/;
    license = licenses.mit;
  };

}