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

python3.pkgs.influxdb: fix build

+10 -1
+10 -1
pkgs/development/python-modules/influxdb/default.nix
··· 5 5 , dateutil 6 6 , pytz 7 7 , six 8 + , msgpack 9 + , fetchpatch 8 10 }: 9 11 10 12 buildPythonPackage rec { ··· 18 16 sha256 = "9bcaafd57ac152b9824ab12ed19f204206ef5df8af68404770554c5b55b475f6"; 19 17 }; 20 18 19 + patches = [ 20 + (fetchpatch { 21 + url = "https://github.com/influxdata/influxdb-python/commit/cc41e290f690c4eb67f75c98fa9f027bdb6eb16b.patch"; 22 + sha256 = "1fb9qrq1kp24pixjwvzhdy67z3h0wnj92aj0jw0a25fd0rdxdvg4"; 23 + }) 24 + ]; 25 + 21 26 # ImportError: No module named tests 22 27 doCheck = false; 23 - propagatedBuildInputs = [ requests dateutil pytz six ]; 28 + propagatedBuildInputs = [ requests dateutil pytz six msgpack ]; 24 29 25 30 meta = with stdenv.lib; { 26 31 description = "Python client for InfluxDB";