1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-24 18:16:21 +03:00
nixpkgs/pkgs/development/python-modules/whitenoise/default.nix

22 lines
494 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, isPy27 }:
2018-01-20 11:51:59 +01:00
buildPythonPackage rec {
pname = "whitenoise";
2020-08-16 19:31:20 +02:00
version = "5.2.0";
disabled = isPy27;
2018-01-20 11:51:59 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 19:31:20 +02:00
sha256 = "05ce0be39ad85740a78750c86a93485c40f08ad8c62a6006de0233765996e5c7";
2018-01-20 11:51:59 +01:00
};
# No tests
doCheck = false;
meta = with lib; {
2018-01-20 11:51:59 +01:00
description = "Radically simplified static file serving for WSGI applications";
homepage = "http://whitenoise.evans.io/";
2018-01-20 11:51:59 +01:00
license = licenses.mit;
};
}