python.pkgs.whitenoise: init at 4.0b4
This commit is contained in:
parent
851f05ef69
commit
e2e2cb4961
20
pkgs/development/python-modules/whitenoise/default.nix
Normal file
20
pkgs/development/python-modules/whitenoise/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -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";
|
||||||
|
Loading…
Reference in New Issue
Block a user