python: jupyter_client: 5.2.0 -> 5.2.1

This commit is contained in:
Frederik Rietdijk 2018-01-07 09:00:42 +01:00
parent 35fa14484e
commit 881d6a9e64
2 changed files with 2 additions and 19 deletions

View File

@ -15,11 +15,11 @@
buildPythonPackage rec {
pname = "jupyter_client";
version = "5.2.0";
version = "5.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "ca30cf1786047925ebacd6f6faa3a993efaa004b584f7d83bc8b807f7cd3f6bb";
sha256 = "462790d46b244f0a631ea5e3cd5cdbad6874d5d24cc0ff512deb7c16cdf8653d";
};
checkInputs = [ ipykernel ipython mock pytest ];
@ -29,10 +29,6 @@ buildPythonPackage rec {
py.test
'';
patches = [
./wheel_workaround.patch
];
# Circular dependency with ipykernel
doCheck = false;

View File

@ -1,13 +0,0 @@
diff --git a/setup.py b/setup.py
index 95d4774..ee72cbc 100644
--- a/setup.py
+++ b/setup.py
@@ -86,7 +86,7 @@ setup_args = dict(
extras_require = {
'test': ['ipykernel', 'ipython', 'mock'],
'test:python_version == "3.3"': ['pytest<3.3.0'],
- 'test:python_version >= "3.4" or python_version == "2.7"': ['pytest'],
+ 'test:(python_version >= "3.4" or python_version == "2.7")': ['pytest'],
},
cmdclass = {
'bdist_egg': bdist_egg if 'bdist_egg' in sys.argv else bdist_egg_disabled,