Skip to content

Commit

Permalink
pythonPackages.paste 1.7.5.1 -> 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
thanegill authored and FRidh committed Jan 27, 2017
1 parent d2b17fe commit ed67a10
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -18218,17 +18218,21 @@ in {
};

paste = buildPythonPackage rec {
name = "paste-1.7.5.1";
disabled = isPy3k;
name = "paste-${version}";
version = "2.0.3";

src = pkgs.fetchurl {
url = mirror://pypi/P/Paste/Paste-1.7.5.1.tar.gz;
sha256 = "11645842ba8ec986ae8cfbe4c6cacff5c35f0f4527abf4f5581ae8b4ad49c0b6";
url = "mirror://pypi/P/Paste/Paste-${version}.tar.gz";
sha256 = "062jk0nlxf6lb2wwj6zc20rlvrwsnikpkh90y0dn8cjch93s6ii3";
};

buildInputs = with self; [ nose ];
checkInputs = with self; [ nose ];
propagatedBuildInputs = with self; [ six ];

doCheck = false; # some files required by the test seem to be missing
# Certain tests require network
checkPhase = ''
NOSE_EXCLUDE=test_ok,test_form,test_error,test_stderr,test_paste_website nosetests
'';

meta = {
description = "Tools for using a Web Server Gateway Interface stack";
Expand Down Expand Up @@ -18266,7 +18270,7 @@ in {

doCheck = false;
buildInputs = with self; [ nose ];
propagatedBuildInputs = with self; [ paste PasteDeploy cheetah argparse ];
propagatedBuildInputs = with self; [ six paste PasteDeploy cheetah argparse ];

meta = {
description = "A pluggable command-line frontend, including commands to setup package file layouts";
Expand Down

0 comments on commit ed67a10

Please sign in to comment.