Skip to content

Commit 0d20c7e

Browse files
committedJun 21, 2017
python.pkgs: several maintenance bumps
1 parent 031d26e commit 0d20c7e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed
 

‎pkgs/development/python-modules/Nikola/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
buildPythonPackage rec {
3131
name = "${pname}-${version}";
3232
pname = "Nikola";
33-
version = "7.8.8";
33+
version = "7.8.9";
3434

3535
# Nix contains only Python 3 supported version of doit, which is a dependency
3636
# of Nikola. Python 2 support would require older doit 0.29.0 (which on the
@@ -47,7 +47,7 @@ buildPythonPackage rec {
4747

4848
src = fetchPypi {
4949
inherit pname version;
50-
sha256 = "a45272e96ea8311e79ab6ea5523d792207d549cba418d623f03bf80d5e5e3e5a";
50+
sha256 = "c85bf293a245a34057fb55236fc2f2c5d28e9ef1c375889f443bca1d86924df4";
5151
};
5252

5353
meta = {

‎pkgs/development/python-modules/asgi_redis/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
asgiref, asgi_ipc, msgpack, six, redis, cryptography
33
}:
44
buildPythonPackage rec {
5-
version = "1.4.1";
5+
version = "1.4.2";
66
pname = "asgi_redis";
77
name = "${pname}-${version}";
88

99
src = fetchurl {
1010
url = "mirror://pypi/a/asgi_redis/${name}.tar.gz";
11-
sha256 = "71a6147c8b08833815993f16e2b665a0e5483fae392f03decb8da54ed0882904";
11+
sha256 = "aa8e9342a3e66c4e7f9035b074f6f66b92e5f1cf8022f1446106ed6dd004a274";
1212
};
1313

1414
# Requires a redis server available

‎pkgs/development/python-modules/libnacl/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
buildPythonPackage rec {
44
pname = "libnacl";
5-
version = "1.5.0";
5+
version = "1.5.1";
66
name = "${pname}-${version}";
77

88
src = fetchPypi {
99
inherit pname version;
10-
sha256 = "1ph042x0cfysj16mmjif40pxn505rg5c9n94s972dgc0mfgvrwhs";
10+
sha256 = "e44e9436e7245b0d8b7322bef67750cb7757834d7ccdb7eb7b723b4813df84fb";
1111
};
1212

1313
buildInputs = [ pytest ];

‎pkgs/development/python-modules/sqlalchemy/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
buildPythonPackage rec {
1212
pname = "SQLAlchemy";
1313
name = "${pname}-${version}";
14-
version = "1.1.10";
14+
version = "1.1.11";
1515

1616
src = fetchPypi {
1717
inherit pname version;
18-
sha256 = "dbd92b8af2306d600efa98ed36262d73aad227440a758c8dc3a067ca30096bd3";
18+
sha256 = "76f76965e9a968ba3aecd2a8bc0d991cea04fd9a182e6c95c81f1551487b0211";
1919
};
2020

2121
checkInputs = [ pytest mock pytest_xdist ]

‎pkgs/development/python-modules/zxcvbn-python/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55

66
buildPythonPackage rec {
77
pname = "zxcvbn-python";
8-
version = "4.4.14";
8+
version = "4.4.15";
99

1010
name = "${pname}-${version}";
1111

1212
src = fetchPypi {
1313
inherit pname version;
14-
sha256 = "fd3a46536035851571e3f4142b64d6e7bcf0ade3cd40d8fecae7a1243945e327";
14+
sha256 = "ef982a382518d217d353a42093aa8bb8608a50bc2df559c08885bba166782cd0";
1515
};
1616

1717
# No tests in archive

0 commit comments

Comments
 (0)
Please sign in to comment.