Commit graph

208098 commits

Author SHA1 Message Date
Frederik Rietdijk 164408fcd4 pythonPackages.tifffile: fix syntax error 2019-12-30 18:17:23 +01:00
Marek Mahut 97da2d22fe python3Packages.trezor: 0.11.5 -> 0.11.6 2019-12-30 18:14:42 +01:00
Chris Ostrouchov 8f870327b2 pythonPackages.aioamqp: 0.13.0 -> 0.14.0 fix broken package 2019-12-30 18:13:51 +01:00
Chris Ostrouchov 98d34eda12 pythonPackages.pyrabbit2: init at 1.0.7 2019-12-30 18:13:51 +01:00
Edmund Wu 226b6c7935 pythonPackages.sqlalchemy-utils: 0.35.0 -> 0.36.0 2019-12-30 18:12:51 +01:00
Frederik Rietdijk 3af601f37d
Merge pull request #76664 from costrouc/python-fsspec-update
python3Packages.fsspec: 0.5.2 -> 0.6.2 enable tests
2019-12-30 18:10:17 +01:00
Frederik Rietdijk 5a3cbd01f7
Merge pull request #76652 from costrouc/python-httpx-init
Packaging several async python web libraries / databases connectors
2019-12-30 18:09:22 +01:00
Oleksii Filonenko 31fffc6a69 topgrade: 3.5.0 -> 3.6.0 2019-12-30 09:02:45 -08:00
Orivej Desh (NixOS) b5a8b62993
Merge pull request #76272 from orivej/dpdk
Fix build and update dpdk and dependent packages
2019-12-30 16:54:22 +00:00
Orivej Desh 140ab69ae6 pktgen: 3.7.2 -> 19.12.0, build with meson, fix build
Building with make requires share/dpdk/mk/ from the make build of dpdk, which is
not installed by the meson build of dpdk.
2019-12-30 16:50:41 +00:00
Orivej Desh fdb16f3a77 linuxPackages.dpdk: fix build 2019-12-30 16:50:40 +00:00
Orivej Desh ddc4239e6a odp-dpdk: fix build 2019-12-30 16:50:40 +00:00
Orivej Desh 14caf0fdaa spdk: 19.04 -> 19.10, fix build with mesonified dpdk 2019-12-30 16:50:40 +00:00
Orivej Desh 17884f7b15 dpdk: 19.08.2 -> 19.11 2019-12-30 16:50:40 +00:00
Aaron Andersen 6777926911 nixos/httpd: update default ssl protocols 2019-12-30 11:24:11 -05:00
Andrew Childs 93470276f9 mtdutils: fix cross build 2019-12-30 17:21:39 +01:00
Andrew Childs 2b3975d5d2 openocd: Fix FTDI channel configuration for SheevaPlug 2019-12-30 17:21:39 +01:00
Andrew Childs 4b877fb11b ubootSheevaplug: install Kirkwood Boot Image instead of raw uboot 2019-12-30 17:21:39 +01:00
Andrew Childs 6dd60c6cac texinfoInteractive: fix cross build 2019-12-30 17:21:39 +01:00
Andrew Childs 2e8e023363 libgpgerror: fix cross build on older 32-bit arm 2019-12-30 17:21:39 +01:00
Andrew Childs 209d700da4 nix: fix build on armv5tel-linux 2019-12-30 17:21:39 +01:00
Andrew Childs 63c9e4ee9d meson: add armv5tel cpu family 2019-12-30 17:21:39 +01:00
Robert Scott de0e71780c afl: 2.52b -> 2.56b
can remove qemu glibc patch as it is now covered by afl's own patches
2019-12-30 10:21:19 -06:00
Jonathan Ringer 21958c0603 steam.chroot: add at-spi2-core
Needed by CrossCode
2019-12-30 17:13:12 +01:00
Aaron Andersen 7c8d98f8df nixos/sysstat: provide a type for each module option 2019-12-30 17:10:53 +01:00
Marek Mahut de4b7d51e9
Merge pull request #76700 from pschuprikov/fix-toggl-cli-deps
python3Packages: toggl-cli fix pendulum version bounds
2019-12-30 17:00:51 +01:00
Oleksii Filonenko ab63902d1f
nixosTests.haka: port to python 2019-12-30 17:57:00 +02:00
Frederik Rietdijk b2631437e1 Merge staging-next into staging 2019-12-30 16:50:33 +01:00
Frederik Rietdijk acc3dd20c0
Merge pull request #76059 from NixOS/python-unstable
Python package set major updates
2019-12-30 16:50:33 +01:00
Jonathan Ringer fca4359376 nbstripout: fix build 2019-12-30 16:46:55 +01:00
Frederik Rietdijk 296b2ab3c4 pythonPackages.Babel: remove glibcLocales and don't set LC_ALL
as we already set

    LANG = "${if python.stdenv.isDarwin then "en_US" else "C"}.UTF-8";

in `buildPythonPackage`.

This is related to issue https://github.com/NixOS/nixpkgs/issues/74904
2019-12-30 16:46:55 +01:00
Jan Tojnar f4e74edd8c python.pkgs.wrapPython: get rid of warning
When `makeWrapperArgs` variable is not set, `declare -p makeWrapperArgs`
will return with 1 and print an error message to stderr.

I did not handle the non-existence case in b0633406cb
because I thought `mk-python-derivation` will always define `makeWrapperArgs`
but `wrapProgram` can be called independently. And even with `mk-python-derivation`,
`makeWrappers` will not be set unless explicitly declared in the derivation
because of https://github.com/NixOS/nix/issues/1461.

I was lead to believe that because the builds were succeeding and I confirmed
that the mechanism fails when the variable is not defined and `-o nounset` is enabled.
It appears that `wrapPython` setup hook is not running under `-o nounset`, though,
invaldating the assumption.

Now we are checking that the variable exists before checking its type, which
will get rid of the warning and also prevent future error when `-o nounset`
is enabled in the setup hook.

For more information, see the discussion at
https://github.com/NixOS/nixpkgs/commit/a6bb2ede232940a96150da7207a3ecd15eb6328
2019-12-30 16:46:55 +01:00
Frederik Rietdijk dc84440055 pythonPackages.sphinx: remove sqlalchemy
Not a mandatory dependency so remove it.
2019-12-30 16:46:55 +01:00
Frederik Rietdijk 70fff17104 python: zha-quirks: 0.0.28 -> 0.0.30 2019-12-30 16:46:55 +01:00
Frederik Rietdijk 85fcbaeb1e python: zeroconf: 0.24.2 -> 0.24.3 2019-12-30 16:46:55 +01:00
Frederik Rietdijk 1c15acf9e5 python: xml2rfc: 2.37.2 -> 2.37.3 2019-12-30 16:46:55 +01:00
Frederik Rietdijk 68db520555 python: uritemplate: 3.0.0 -> 3.0.1 2019-12-30 16:46:55 +01:00
Frederik Rietdijk d6306480be python: uncompyle6: 3.6.0 -> 3.6.1 2019-12-30 16:46:55 +01:00
Frederik Rietdijk 1d729f8e5e python: typeguard: 2.7.0 -> 2.7.1 2019-12-30 16:46:55 +01:00
Frederik Rietdijk 0152b154c2 python: tox: 3.14.2 -> 3.14.3 2019-12-30 16:46:55 +01:00
Frederik Rietdijk c69f61d71a python: SPARQLWrapper: 1.8.4 -> 1.8.5 2019-12-30 16:46:55 +01:00
Frederik Rietdijk c46d9c0e92 python: slither-analyzer: 0.6.8 -> 0.6.9 2019-12-30 16:46:55 +01:00
Frederik Rietdijk d8118c4d3f python: shodan: 1.21.0 -> 1.21.1 2019-12-30 16:46:55 +01:00
Frederik Rietdijk 24f93ef64b python: semantic_version: 2.8.3 -> 2.8.4 2019-12-30 16:46:55 +01:00
Frederik Rietdijk 165c03b691 python: runway-python: 0.5.4 -> 0.5.7 2019-12-30 16:46:54 +01:00
Frederik Rietdijk 4cac0fd112 python: responses: 0.10.8 -> 0.10.9 2019-12-30 16:46:54 +01:00
Frederik Rietdijk f53276a00c python: regex: 2019.12.19 -> 2019.12.20 2019-12-30 16:46:54 +01:00
Frederik Rietdijk 21c8fc476b python: qimage2ndarray: 1.8 -> 1.8.2 2019-12-30 16:46:54 +01:00
Frederik Rietdijk aae6fe2c2c python: pyvcd: 0.1.5 -> 0.1.6 2019-12-30 16:46:54 +01:00
Frederik Rietdijk b95c9a3bfd python: pytest: 4.6.7 -> 4.6.8 2019-12-30 16:46:54 +01:00