summary refs log tree commit diff
path: root/pkgs/development/python-modules/pastescript/default.nix
blob: dd93bd404d0642f7ed8b8d4a2a055ba67cddb4b3 (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
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, six
, paste
, PasteDeploy
, cheetah
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "9b0f5c0f1c6a510a353fa7c3dc4fdaab9071462d60d24573de76a001fbc172ac";
  };

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

  doCheck = false;

  meta = with stdenv.lib; {
    description = "A pluggable command-line frontend, including commands to setup package file layouts";
    homepage = https://github.com/cdent/pastescript/;
    license = licenses.mit;
  };

}