about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pastescript/default.nix
blob: 06e71cf790b27bd51d61f55e4f454eddb05a91d6 (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
25
26
27
28
29
30
31
32
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, six
, paste
, PasteDeploy
, cheetah
, argparse
}:

buildPythonPackage rec {
  version = "1.7.5";
  pname = "PasteScript";

  src = fetchPypi {
    inherit pname version;
    sha256 = "2b685be69d6ac8bc0fe6f558f119660259db26a15e16a4943c515fbee8093539";
  };

  buildInputs = [ nose ];
  propagatedBuildInputs = [ six paste PasteDeploy cheetah argparse ];

  doCheck = false;

  meta = with stdenv.lib; {
    description = "A pluggable command-line frontend, including commands to setup package file layouts";
    homepage = http://pythonpaste.org/script/;
    license = licenses.mit;
  };

}