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

pythonPackages.whitenoise: 6.0.0 -> 6.2.0

+5 -3
+5 -3
pkgs/development/python-modules/whitenoise/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "whitenoise"; 13 - version = "6.0.0"; 13 + version = "6.2.0"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; 17 + 18 + __darwinAllowLocalNetworking = true; 17 19 18 20 src = fetchFromGitHub { 19 21 owner = "evansd"; 20 22 repo = pname; 21 23 rev = version; 22 - hash = "sha256-mUjyX4eQOiMweje6UPyfyJsiHwzF5OQ93KuxFedWxbQ="; 24 + hash = "sha256-HcWWWMIuU8kfcOnntgXUnHD3pFogq8OEAd3wRtCnXjQ="; 23 25 }; 24 26 25 27 propagatedBuildInputs = [ ··· 52 50 53 51 meta = with lib; { 54 52 description = "Radically simplified static file serving for WSGI applications"; 55 - homepage = "http://whitenoise.evans.io/"; 53 + homepage = "https://whitenoise.evans.io/"; 56 54 license = licenses.mit; 57 55 maintainers = with maintainers; [ ]; 58 56 };