tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
pythonPackages.whitenoise: 6.0.0 -> 6.2.0
Alex Wied
3 years ago
e1926697
5e053ae4
+5
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
whitenoise
default.nix
+5
-3
pkgs/development/python-modules/whitenoise/default.nix
reviewed
···
10
10
11
11
buildPythonPackage rec {
12
12
pname = "whitenoise";
13
13
-
version = "6.0.0";
13
13
+
version = "6.2.0";
14
14
format = "setuptools";
15
15
16
16
disabled = pythonOlder "3.7";
17
17
+
18
18
+
__darwinAllowLocalNetworking = true;
17
19
18
20
src = fetchFromGitHub {
19
21
owner = "evansd";
20
22
repo = pname;
21
23
rev = version;
22
22
-
hash = "sha256-mUjyX4eQOiMweje6UPyfyJsiHwzF5OQ93KuxFedWxbQ=";
24
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
55
-
homepage = "http://whitenoise.evans.io/";
53
53
+
homepage = "https://whitenoise.evans.io/";
56
54
license = licenses.mit;
57
55
maintainers = with maintainers; [ ];
58
56
};