nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python311Packages.whitenoise: 6.2.0 -> 6.4.0

Changelog: https://github.com/evansd/whitenoise/blob/6.4.0/docs/changelog.rst

+11 -5
+11 -5
pkgs/development/python-modules/whitenoise/default.nix
··· 6 6 , pytestCheckHook 7 7 , pythonOlder 8 8 , requests 9 + , setuptools 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "whitenoise"; 13 - version = "6.2.0"; 14 - format = "setuptools"; 14 + version = "6.4.0"; 15 + format = "pyproject"; 15 16 16 17 disabled = pythonOlder "3.7"; 17 18 ··· 21 20 src = fetchFromGitHub { 22 21 owner = "evansd"; 23 22 repo = pname; 24 - rev = version; 25 - hash = "sha256-HcWWWMIuU8kfcOnntgXUnHD3pFogq8OEAd3wRtCnXjQ="; 23 + rev = "refs/tags/${version}"; 24 + hash = "sha256-ouEoqMcNh3Vwahwaq6bGQuVUFViVN14CDJosDXC5ozI="; 26 25 }; 26 + 27 + nativeBuildInputs = [ 28 + setuptools 29 + ]; 27 30 28 31 propagatedBuildInputs = [ 29 32 brotli ··· 56 51 ]; 57 52 58 53 meta = with lib; { 59 - description = "Radically simplified static file serving for WSGI applications"; 54 + description = "Library to serve static file for WSGI applications"; 60 55 homepage = "https://whitenoise.evans.io/"; 56 + changelog = "https://github.com/evansd/whitenoise/blob/${version}/docs/changelog.rst"; 61 57 license = licenses.mit; 62 58 maintainers = with maintainers; [ ]; 63 59 };