My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/webhelpers/default.nix

31 lines
670 B

{ lib
, buildPythonPackage
, fetchPypi
, routes
, markupsafe
, webob
, nose
}:
buildPythonPackage rec {
pname = "WebHelpers";
version = "1.3";
src = fetchPypi {
inherit pname version;
sha256 = "ea86f284e929366b77424ba9a89341f43ae8dee3cbeb8702f73bcf86058aa583";
};
buildInputs = [ routes markupsafe webob nose ];
# TODO: failing tests https://bitbucket.org/bbangert/webhelpers/pull-request/1/fix-error-on-webob-123/diff
doCheck = false;
meta = with lib; {
homepage = "https://webhelpers.readthedocs.org/en/latest/";
description = "Web Helpers";
license = licenses.free;
maintainers = with maintainers; [ domenkozar ];
};
}