13 buildPythonPackage rec {
16 format = "setuptools";
18 src = fetchFromGitHub {
22 hash = "sha256-uFgv+57/UZs4KoOdkFxbvTEDQrJbb0iYJ5JoWWN4yFY=";
26 substituteInPlace setup.py \
27 --replace ", 'pytest-cov'" ""
30 passthru.optional-dependencies = {
39 pythonImportsCheck = [
46 ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
49 changelog = "https://github.com/rmohr/static3/releases/tag/v${version}";
50 description = "A really simple WSGI way to serve static (or mixed) content";
51 homepage = "https://github.com/rmohr/static3";
52 license = licenses.lgpl21Only;
53 maintainers = with maintainers; [ hexa ];