1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5, six
6, paste
7, pastedeploy
8}:
9
10buildPythonPackage rec {
11 pname = "pastescript";
12 version = "3.2.1";
13
14 src = fetchPypi {
15 pname = "PasteScript";
16 inherit version;
17 sha256 = "f3ef819785e1b284e6fc108a131bce7e740b18255d96cd2e99ee3f00fd452468";
18 };
19
20 propagatedBuildInputs = [
21 paste
22 pastedeploy
23 six
24 ];
25
26 checkInputs = [ nose ];
27
28 pythonNamespaces = [ "paste" ];
29
30 meta = with lib; {
31 description = "A pluggable command-line frontend, including commands to setup package file layouts";
32 homepage = "https://github.com/cdent/pastescript/";
33 license = licenses.mit;
34 maintainers = with maintainers; [ ];
35 };
36}