Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python.pkgs.whitenoise: init at 4.0b4

+22
+20
pkgs/development/python-modules/whitenoise/default.nix
··· 1 + { stdenv, fetchPypi, buildPythonPackage }: 2 + 3 + buildPythonPackage rec { 4 + pname = "whitenoise"; 5 + version = "4.0b4"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "0ra2bbsihwfhnf1ibahzzabgfjfghxqcrbfx6r5r50mlil5n8bf4"; 10 + }; 11 + 12 + # No tests 13 + doCheck = false; 14 + 15 + meta = with stdenv.lib; { 16 + description = "Radically simplified static file serving for WSGI applications"; 17 + homepage = http://whitenoise.evans.io/; 18 + license = licenses.mit; 19 + }; 20 + }
+2
pkgs/top-level/python-packages.nix
··· 22479 22479 22480 22480 vine = callPackage ../development/python-modules/vine { }; 22481 22481 22482 + whitenoise = callPackage ../development/python-modules/whitenoise { }; 22483 + 22482 22484 wp_export_parser = buildPythonPackage rec { 22483 22485 name = "${pname}-${version}"; 22484 22486 pname = "wp_export_parser";