Skip to content

Commit

Permalink
bravado_core: fix dependency on msgpack
Browse files Browse the repository at this point in the history
  • Loading branch information
vanschelven committed Feb 20, 2020
1 parent f420b06 commit b0f8fa6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/development/python-modules/bravado_core/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ buildPythonPackage rec {
sha256 = "0qhisiays582xagndp3vgby6j7ppy6rivw9ycbcc776p0w8s9l21";
};

patches = ./setup.py.patch; # until https://github.com/Yelp/bravado-core/pull/368 is merged

propagatedBuildInputs = [
python-dateutil
jsonref
Expand Down
13 changes: 13 additions & 0 deletions pkgs/development/python-modules/bravado_core/setup.py.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/setup.py b/setup.py
index bac1ff4..9181aea 100755
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@ install_requires = [
"six",
"swagger-spec-validator>=2.0.1",
"pytz",
- "msgpack-python>=0.5.2",
+ "msgpack>=0.5.2",
]


0 comments on commit b0f8fa6

Please sign in to comment.