mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
38 lines
716 B
Nix
38 lines
716 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
routes,
|
|
markupsafe,
|
|
webob,
|
|
nose,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "webhelpers";
|
|
version = "1.3";
|
|
|
|
src = fetchPypi {
|
|
pname = "WebHelpers";
|
|
inherit 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 ];
|
|
};
|
|
}
|