1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, nose
5, six
6, paste
7, PasteDeploy
8, cheetah
9}:
10
11buildPythonPackage rec {
12 version = "3.0.0";
13 pname = "PasteScript";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "d9d4d98df8606ad3bfa77be4722207d1a53a0fbcc714ee75d0fcd8a5c3f775c3";
18 };
19
20 buildInputs = [ nose ];
21 propagatedBuildInputs = [ six paste PasteDeploy cheetah ];
22
23 doCheck = false;
24
25 meta = with stdenv.lib; {
26 description = "A pluggable command-line frontend, including commands to setup package file layouts";
27 homepage = http://pythonpaste.org/script/;
28 license = licenses.mit;
29 };
30
31}