python.pkgs.whitenoise: init at 4.0b4

This commit is contained in:
Frederik Rietdijk 2018-01-20 11:51:59 +01:00
parent 851f05ef69
commit e2e2cb4961
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "whitenoise";
version = "4.0b4";
src = fetchPypi {
inherit pname version;
sha256 = "0ra2bbsihwfhnf1ibahzzabgfjfghxqcrbfx6r5r50mlil5n8bf4";
};
# No tests
doCheck = false;
meta = with stdenv.lib; {
description = "Radically simplified static file serving for WSGI applications";
homepage = http://whitenoise.evans.io/;
license = licenses.mit;
};
}

View File

@ -22479,6 +22479,8 @@ EOF
vine = callPackage ../development/python-modules/vine { }; vine = callPackage ../development/python-modules/vine { };
whitenoise = callPackage ../development/python-modules/whitenoise { };
wp_export_parser = buildPythonPackage rec { wp_export_parser = buildPythonPackage rec {
name = "${pname}-${version}"; name = "${pname}-${version}";
pname = "wp_export_parser"; pname = "wp_export_parser";