Commit Graph

103804 Commits

Author SHA1 Message Date
Sandro
3b54c90e75
Merge pull request #119121 from fabaff/bump-twilio
python3Packages.twilio: 6.51.1 -> 6.56.0
2021-04-11 16:42:05 +02:00
Sandro
53f7b49a8f
Merge pull request #119120 from fabaff/bump-wakeonlan
python3Packages.wakeonlan: 2.0.0 -> 2.0.1
2021-04-11 16:41:33 +02:00
Sandro
07102206f1
Merge pull request #119116 from r-ryantm/auto-update/github-commenter
github-commenter: 0.8.0 -> 0.9.0
2021-04-11 16:39:17 +02:00
Benjamin Hipple
303a3c21d6
Merge pull request #119062 from r-ryantm/auto-update/oneDNN
oneDNN: 2.1.3 -> 2.2.1
2021-04-11 10:30:36 -04:00
Sandro
fbecd7794b
Merge pull request #119103 from storvik/fix-clpm
clpm: build with sbcl 2.0.9
2021-04-11 16:30:02 +02:00
Sandro
2110db99aa
Merge pull request #119099 from r-ryantm/auto-update/air
air: 1.15.1 -> 1.25
2021-04-11 16:27:03 +02:00
Fabian Affolter
48d9b4524a python3Packages.pyeconet: init at 0.1.13 2021-04-11 16:26:32 +02:00
Jörg Thalheim
57ae5de960
Merge pull request #118964 from danieldk/pytorch-no-tests
python3Packages.pytorch: disable building of tests
2021-04-11 15:22:13 +01:00
Sandro
7cc6af3955
Merge pull request #119074 from fabaff/aioemonitor
python3Packages.aioemonitor: init at 1.0.5
2021-04-11 16:03:13 +02:00
Fabian Affolter
d83386c85f python3Packages.python-telegram-bot: 13.3 -> 13.4.1 2021-04-11 16:02:21 +02:00
Fabian Affolter
a9dc1be62f python3Packages.nexia: init at 0.9.6 2021-04-11 15:41:07 +02:00
Fabian Affolter
d93a794679 python3Packages.pylutron-caseta: init at 0.9.0 2021-04-11 15:23:43 +02:00
Fabian Affolter
76019785f6 python3Packages.aiolip: init at 1.1.4 2021-04-11 15:23:43 +02:00
Vincent Laporte
b729d4080a
ocamlPackages.ocp-indent: use Dune 2 2021-04-11 14:32:14 +02:00
Fabian Affolter
7875699b7e python3Packages.pythonegardia: init at 1.0.40 2021-04-11 14:04:39 +02:00
Mauricio Scheffer
5fbed8bc85 tf2pulumi: init at 0.10.0 2021-04-11 12:53:28 +01:00
R. RyanTM
6667b38ed9 libsForQt5.mlt: 6.24.0 -> 6.24.0 2021-04-11 11:50:19 +00:00
Fabian Affolter
c17a2151bb python3Packages.pyemby: init at 1.7 2021-04-11 13:38:19 +02:00
Jörg Thalheim
f381fecfd5
cutter: 2.0.0 -> 2.0.1 2021-04-11 13:06:11 +02:00
Jörg Thalheim
7dbe49ed1a
rizin: 0.1.2 -> 0.2.0 2021-04-11 13:06:09 +02:00
R. RyanTM
89fb8850e0 librsync: 2.3.1 -> 2.3.2 2021-04-11 11:03:34 +00:00
Austin Butler
9e9527b1b4 python3Packages.poetry: 1.1.4 -> 1.1.5 2021-04-11 12:46:54 +02:00
Fabian Affolter
1dee5f4388 python3Packages.transformers: fix build 2021-04-11 12:46:30 +02:00
Hubert Jasudowicz
fac3725e5b pythonPackages.karton-core: init at 4.2.0 2021-04-11 12:32:08 +02:00
sterni
2140791f9b
ocamlPackages.janeStreet{,_0_9_0}: join the ocamlPackages fix point, allowing overriding to work as expected (#113696)
* ocamlPackages.janeStreet_0_9_0: join the ocamlPackages fix point

Internal dependencies in the janeStreet sets were always taken from the
own rec attribute set. While this is pretty simple and convenient, it
has the disadvantage that it doesn't play nice with overriding: If you'd
override an attribute in a janeStreet set previously, it would be
changed when referenced directly, but the other packages in that
janeStreet set still would use the original, non-overridden version of
the derivation.

This is easily fixed by passing janeStreet_0_9_0 itself from the fix
point of ocamlPackages and using it to reference the dependencies.

Example showing it now works as expected:

test-overlay.nix:

    self: super: {
      ocamlPackages = super.ocamlPackages.overrideScope (old: _: {
        janeStreet_0_9_0 = old.janeStreet_0_9_0 // {
          base = old.janeStreet_0_9_0.base.overrideAttrs (_: {
            meta.broken = true;
          });
        };
      });
    }

nix-repl> (import ./. {
  overlays = [ (import ./test-overlay.nix) ];
}).ocamlPackages.janeStreet_0_9_0.stdio

error: Package ‘ocaml4.10.0-base-0.9.4’ in /home/lukas/src/nix/nixpkgs/pkgs/development/ocaml-modules/janestreet/janePackage.nix:6 is marked as broken, refusing to evaluate.

a) To temporarily allow broken packages, you can use an environment variable
   for a single invocation of the nix tools.

     $ export NIXPKGS_ALLOW_BROKEN=1

b) For `nixos-rebuild` you can set
  { nixpkgs.config.allowBroken = true; }
in configuration.nix to override this.

c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
  { allowBroken = true; }
to ~/.config/nixpkgs/config.nix.

* ocamlPackages.janeStreet: take part in fixpoint for OCaml >= 4.08

This change makes overrides to the janeStreet set work as expected by
making the janeStreet set take part in the ocamlPackages fixpoint for
janeStreet 0.14, i. e. OCaml >= 4.08

* ocamlPackages.janeStreet: take part in fixpoint for OCaml == 4.07

This change makes overrides to the janeStreet set work as expected by
making the janeStreet set take part in the ocamlPackages fixpoint for
janeStreet 0.12, i. e. OCaml == 4.07

* ocamlPackages.janeStreet: take part in fixpoint for OCaml < 4.07

This change makes overrides to the janeStreet set work as expected by
making the janeStreet set take part in the ocamlPackages fixpoint for
janeStreet 0.11, i. e. OCaml < 4.07

* ocamlPackages.janeStreet: remove self - super distinction

Previously, we inherited non-janestreet ocaml dependencies from super
and janestreet dependencies from self which always was super.janeStreet.

This behavior is however not really what we want due to liftJaneStreet:
Users and other packages will use ocamlPackages.base etc. instead of
ocamlPackages.janeStreet.base and the like. Consequently they also would
override the top-level attributes which would mean that other janestreet
packages would not pick up on it however.

As a consequence however, overriding ocamlPackages.janeStreet.base
doesn't work. Since this was never possible, I don't think this is an
issue. It is probably a good idea to deprecate that set anyways and
printing a warning when it is used via trace.

janeStreet_0_9_0 is unchanged as the disticniton between self and super
makes sense for it.

Below is an example showing how overriding would work from an user's
perspective:

test-overlay.nix:

    self: super: {
      ocamlPackages = super.ocamlPackages.overrideScope (old: _: {
        base = old.base.overrideAttrs (_: {
          meta.broken = true;
        });
      });
    }

nix-repl> (import ./. { overlays = [ (import ./test-overlay.nix) ]; }).ocamlPackages.
stdio
error: Package ‘ocaml4.10.0-base-0.14.0’ in /home/lukas/src/nix/nixpkgs/pkgs/development/ocaml-modules/janestreet/janePackage_0_14.nix:12 is marked as broken, refusing to evaluate.

a) To temporarily allow broken packages, you can use an environment variable
   for a single invocation of the nix tools.

     $ export NIXPKGS_ALLOW_BROKEN=1

b) For `nixos-rebuild` you can set
  { nixpkgs.config.allowBroken = true; }
in configuration.nix to override this.

c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
  { allowBroken = true; }
to ~/.config/nixpkgs/config.nix.
2021-04-11 12:26:10 +02:00
Fabian Affolter
2df1ab3378 python3Packages.twilio: 6.51.1 -> 6.56.0 2021-04-11 12:24:00 +02:00
Julien Moutinho
687e55bfc0 ifcopenshell: 0.6.0b0 -> 210410 2021-04-11 12:10:46 +02:00
Fabian Affolter
c1f31aaf22 python3Packages.pycognito: 0.1.5 -> 2021.03.1 2021-04-11 12:08:45 +02:00
Fabian Affolter
144cf60076 python3Packages.hass-nabucasa: 0.42.0 -> 0.43.0 2021-04-11 12:04:08 +02:00
R. RyanTM
9430cc2da0 github-commenter: 0.8.0 -> 0.9.0 2021-04-11 09:08:43 +00:00
Doron Behar
cd5b07f01e
Merge pull request #112713 from r-ryantm/auto-update/python3.7-datadog
python37Packages.datadog: 0.39.0 -> 0.40.0
2021-04-11 08:47:50 +00:00
Fabian Affolter
c7557da36c python3Packages.wakeonlan: 2.0.0 -> 2.0.1 2021-04-11 10:40:37 +02:00
Vincent Laporte
0062afc050 ocamlPackages.printbox: 0.4 → 0.5 2021-04-11 10:10:38 +02:00
storvik
cf25944d02 clpm: use sbcl 2.0.9 when building
Use SBCL < 2.1.0 when building as SB-VM::MAKE-EA was removed.
2021-04-11 09:21:35 +02:00
Martin Weinelt
7644480555
python3Packages.snitun: disable failing test on darwin (#119009)
The upstream advertises this package as "OS independent", but from
issues it is clear they cannot test it on MacOS. So we simply disable
this test.

```
______________________ test_peer_listener_timeout[pyloop] ______________________

raise_timeout = None
peer_manager = <snitun.server.peer_manager.PeerManager object at 0x10a4a6df0>
peer_listener = <snitun.server.listener_peer.PeerListener object at 0x10a4a6a30>
test_client_peer = Client(reader=<StreamReader exception=ConnectionResetError(54, 'Connection reset by peer') transport=<_SelectorSocketT...by peer') transport=<_SelectorSocketTransport closed fd=19>>>, close=<asyncio.locks.Event object at 0x10909ee50 [set]>)

    async def test_peer_listener_timeout(
        raise_timeout, peer_manager, peer_listener, test_client_peer
    ):
        """Run a full flow of with a peer."""
        valid = datetime.utcnow() + timedelta(days=1)
        aes_key = os.urandom(32)
        aes_iv = os.urandom(16)
        hostname = "localhost"
        fernet_token = create_peer_config(valid.timestamp(), hostname, aes_key, aes_iv)

        crypto = CryptoTransport(aes_key, aes_iv)

        test_client_peer.writer.write(fernet_token)
        await test_client_peer.writer.drain()

        with pytest.raises(asyncio.IncompleteReadError):
>           token = await test_client_peer.reader.readexactly(32)

tests/server/test_listener_peer.py:110:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/nix/store/dpa7p7v00xvr26dv2myh3k5p1zkagqsm-python3-3.8.5/lib/python3.8/asyncio/streams.py:723: in readexactly
    await self._wait_for_data('readexactly')
/nix/store/dpa7p7v00xvr26dv2myh3k5p1zkagqsm-python3-3.8.5/lib/python3.8/asyncio/streams.py:517: in _wait_for_data
    await self._waiter
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <_SelectorSocketTransport closed fd=19>

    def _read_ready__data_received(self):
        if self._conn_lost:
            return
        try:
>           data = self._sock.recv(self.max_size)
E           ConnectionResetError: [Errno 54] Connection reset by peer
```
2021-04-11 02:18:59 -04:00
R. RyanTM
6b4de5afec air: 1.15.1 -> 1.25 2021-04-11 05:07:18 +00:00
Ryan Mulligan
04dd46c650
Merge pull request #119065 from r-ryantm/auto-update/openfpgaloader
openfpgaloader: 0.2.5 -> 0.2.6
2021-04-10 21:42:52 -07:00
Dmitry Kalinkin
79e46fe6b0
Merge pull request #118967 from veprbl/pr/rivet_3_1_4
rivet: 3.1.3 -> 3.1.4
2021-04-11 00:29:33 -04:00
Mario Rodas
ec2e4b2d74 bazel-buildtools: 3.5.0 -> 4.0.1 2021-04-11 04:20:00 +00:00
Ryan Mulligan
afca74b711
Merge pull request #119027 from r-ryantm/auto-update/jbang
jbang: 0.69.2 -> 0.70.0
2021-04-10 17:30:19 -07:00
Ryan Mulligan
57223384f8
Merge pull request #118969 from r-ryantm/auto-update/ciao
ciao: 1.19.0 -> 1.20.0
2021-04-10 17:27:42 -07:00
Alyssa Ross
a3251fb2e0
motif: fix format-security 2021-04-10 23:51:05 +00:00
Alyssa Ross
8edca5ad79
motif: 2.3.6 -> 2.3.8; clarify license; adopt 2021-04-10 23:51:00 +00:00
Fabian Affolter
1a3dce63c3 apkid: init at 2.1.1 2021-04-11 01:37:23 +02:00
Fabian Affolter
36d4934c39 python3Packages.yara-python: init at 4.0.5 2021-04-11 01:35:08 +02:00
Ryan Mulligan
2c8e88dabe
Merge pull request #118962 from r-ryantm/auto-update/cargo-deny
cargo-deny: 0.9.0 -> 0.9.1
2021-04-10 16:01:53 -07:00
Fabian Affolter
089908b9db
Merge pull request #119033 from r-ryantm/auto-update/lazygit
lazygit: 0.26.1 -> 0.27.3
2021-04-11 00:35:19 +02:00
Fabian Affolter
0b78980d67 python3Packages.pyenvisalink: init at 4.1 2021-04-10 15:31:56 -07:00
Fabian Affolter
fb327d72df python3Packages.pyclimacell: init at 0.18.0 2021-04-10 21:31:54 +02:00
Fabian Affolter
fec6f0b152 python3Packages.aioemonitor: init at 1.0.5 2021-04-10 21:11:42 +02:00
Fabian Affolter
926d6ab20d python3Packages.aiosyncthing: init at 0.5.1 2021-04-10 20:44:14 +02:00
Fabian Affolter
124aa02185 python3Packages.expects: init at 0.9.0 2021-04-10 20:41:26 +02:00
Mario Rodas
27d7c671af
Merge pull request #118972 from r-ryantm/auto-update/cloud-nuke
cloud-nuke: 0.1.27 -> 0.1.28
2021-04-10 12:31:55 -05:00
R. RyanTM
822c94a557 openfpgaloader: 0.2.5 -> 0.2.6 2021-04-10 17:24:56 +00:00
R. RyanTM
7a5b175c59 oneDNN: 2.1.3 -> 2.2.1 2021-04-10 17:12:26 +00:00
Fabian Affolter
bcb7d810cf python3Packages.pydanfossair: init at 0.1.0 2021-04-10 18:55:57 +02:00
Sandro
a73020b2a1
Merge pull request #119020 from dotlambda/splinter-fix
pythonPackages.splinter: fix build
2021-04-10 18:42:38 +02:00
Sandro
42f3ca2467
Merge pull request #119017 from fabaff/bump-pykwalify
python3Packages.pykwalify: 1.7.0 -> 1.8.0
2021-04-10 18:41:58 +02:00
Sandro
baf5e666c6
Merge pull request #118957 from lovesegfault/pynvim-0.4.3
python3Packages.pynvim: 0.4.2 -> 0.4.3
2021-04-10 18:41:07 +02:00
Sandro
64a8f2b8e5
Merge pull request #118951 from kalbasit/update-west
python3Packages.west: 0.8.0 -> 0.10.1
2021-04-10 18:40:52 +02:00
Gabriel Ebner
cb6a191c65
Merge pull request #119040 from r-ryantm/auto-update/libqalculate
libqalculate: 3.17.0 -> 3.18.0
2021-04-10 18:30:20 +02:00
Sandro
38b7f6b9c2
Merge pull request #119022 from veprbl/pr/pythia_8_304
pythia: 8.303 -> 8.304
2021-04-10 17:09:22 +02:00
Mario Rodas
763b66fef5
Merge pull request #119013 from r-ryantm/auto-update/go-toml
go-toml: 1.8.1 -> 1.9.0
2021-04-10 10:03:14 -05:00
Sandro
937e6da44e
Merge pull request #118984 from Tomahna/metals
metals: 0.10.0 -> 0.10.1
2021-04-10 16:32:15 +02:00
Sandro
15435a234c
Merge pull request #118980 from r-ryantm/auto-update/dbmate
dbmate: 1.11.0 -> 1.12.0
2021-04-10 16:31:28 +02:00
Robert Schütz
c69e6e52e8 python3Packages.pytest-subprocess: init at 1.0.1 2021-04-10 15:36:46 +02:00
R. RyanTM
723a8da830 libqalculate: 3.17.0 -> 3.18.0 2021-04-10 13:36:16 +00:00
R. RyanTM
6ed757b460 lazygit: 0.26.1 -> 0.27.3 2021-04-10 13:15:23 +00:00
R. RyanTM
eff2b5d29f jbang: 0.69.2 -> 0.70.0 2021-04-10 12:26:23 +00:00
Martin Weinelt
79fa31eff9
Merge pull request #119004 from mweinelt/home-assistant
home-assistant: 2021.4.2 -> 2021.4.3
2021-04-10 14:11:01 +02:00
Dmitry Kalinkin
9501203dc1
pythia: 8.303 -> 8.304 2021-04-10 08:05:43 -04:00
Robert Schütz
ecc1a0ff70 pythonPackages.splinter: fix build
Add six to propagatedBuildInputs.
Also enable tests and add dotlambda to maintainers.
2021-04-10 13:57:22 +02:00
Fabian Affolter
212244cd08 python3Packages.pykwalify: 1.7.0 -> 1.8.0 2021-04-10 13:32:01 +02:00
Dmitry Kalinkin
c32ba28e67
github-runner: fix eval (#119011) 2021-04-10 07:14:10 -04:00
R. RyanTM
79ea4d0e0f go-toml: 1.8.1 -> 1.9.0 2021-04-10 11:09:57 +00:00
Vincent Haupert
f4af2f267a
nixos/github-runner: init at v2.277.1 (#116775)
* github-runner: init at 2.277.1

* nixos/github-runner: initial version

* nixos/github-runner: add warning if tokenFile in Nix store

* github-runner: don't accept unexpected attrs

* github-runner: formatting nits

* github-runner: add pre and post hooks to checkPhase

* nixos/github-runner: update ExecStartPre= comment

* nixos/github-runner: adapt tokenFile option description

Also note that not only a change to the option value will trigger a
reconfiguration but also modifications to the file's content.

* nixos/github-runner: remove mkDefault for DynamicUser=

* nixos/github-runner: create a parent for systemd dirs

Adds a parent directory "github-runner/" to all of the systemd lifecycle
directories StateDirectory=, RuntimeDirectory= and LogDirectory=.

Doing this has two motivations:

1. Something like this would required if we want to support multiple
   runners configurations. Please note that this is already possible
   using NixOS containers.
2. Having an additional parent directory makes it easier to remap
   any of the directories. Without a parent, systemd is going to
   complain if, for example, the given StateDirectory= is a symlink.

* nixos/github-runner: use specifier to get abs runtime path

* nixos/github-runner: use hostname as default for option `name`

Until now, the runner registration did not set the `--name` argument if
the configuration option was `null`, the default for the option.
According to GitHub's documentation, this instructs the registration
script to use the machine's hostname.

This commit causes the registration to always pass the `--name` argument
to the runner configuration script. The option now defaults to
`networking.hostName` which should be always set on NixOS.

This change becomes necessary as the systemd service name includes the
name of the runner since fcfa809 and, hence, expects it to be set. Thus,
an unset `name` option leads to an error.

* nixos/github-runner: use types.str for `name` option

Forcing a `name` option to comply with a pattern which could also be
used as a hostname is probably not required by GitHub.

* nixos/github-runner: pass dir paths explicitly for ExecStartPre=

* nixos/github-runner: update variable and script naming

* nixos/github-runner: let systemd choose the user/group

User and group naming restrictions are a complex topic [1] that I don't
even want to touch. Let systemd figure out the username and group and
reference it in our scripts through the USER environment variable.

[1] https://systemd.io/USER_NAMES/

* Revert "nixos/github-runner: use types.str for `name` option"

The escaping applied to the subdirectory paths given to StateDirectory=,
RuntimeDirectory= and LogsDirectory= apparently doesn't use the same
strategy that is used to escape unit names (cf. systemd-escape(1)). This
makes it unreasonably hard to construct reliable paths which work for
StateDirectory=/RuntimeDirectory=/LogsDirectory= and ExecStartPre=.

Against this background, I decided to (re-)apply restrictions to the
name a user might give for the GitHub runner. The pattern for
`networking.hostName` seems like a reasonable choice, also as its value
is the default if the `name` option isn't set.

This reverts commit 193ac67ba337990c22126da24a775c497dbc7e7d.

* nixos/github-runner: use types.path for `tokenFile` option

* nixos/github-runner: escape options used as shell arguments

* nixos/github-runner: wait for network-online.target

* github-runner: ignore additional online tests
2021-04-10 10:17:10 +00:00
Martin Weinelt
cd6cc34d41 python3Packages.python-smarttub: 0.0.21 -> 0.0.23 2021-04-10 12:04:21 +02:00
Martin Weinelt
977132fe59 python3Packages.devolo-home-control-api: 0.17.1 -> 0.17.3 2021-04-10 12:02:00 +02:00
Martin Weinelt
8cbaf51809
Merge pull request #118943 from mweinelt/home-assistant
home-assistant: 2021.4.1 -> 2021.4.2
2021-04-10 11:58:58 +02:00
Kevin Rauscher
92f5917c43
metals: 0.10.0 -> 0.10.1 2021-04-10 10:07:11 +02:00
R. RyanTM
3d3bad9ff3 dbmate: 1.11.0 -> 1.12.0 2021-04-10 07:49:58 +00:00
Doron Behar
ecd2d63dfd
Merge pull request #118975 from r-ryantm/auto-update/cpp-utilities
cpp-utilities: 5.10.1 -> 5.10.2
2021-04-10 07:47:41 +00:00
Thomas Gerbet
cadcf608b5 jasper: 2.0.26 -> 2.0.28
Fixes CVE-2021-3443.

Release notes:
https://github.com/jasper-software/jasper/releases/tag/version-2.0.27
https://github.com/jasper-software/jasper/releases/tag/version-2.0.28
2021-04-10 09:32:11 +02:00
R. RyanTM
ddccf4272c cpp-utilities: 5.10.1 -> 5.10.2 2021-04-10 07:27:35 +00:00
R. RyanTM
e8a7bf4e2d cloud-nuke: 0.1.27 -> 0.1.28 2021-04-10 07:03:23 +00:00
R. RyanTM
950b6c7868 civetweb: 1.13 -> 1.14 2021-04-10 06:47:54 +00:00
R. RyanTM
f549f4c86d ciao: 1.19.0 -> 1.20.0 2021-04-10 06:44:18 +00:00
Dmitry Kalinkin
5bb883a1c0
rivet: 3.1.3 -> 3.1.4 2021-04-10 02:34:23 -04:00
R. RyanTM
cc2931b1a9 certbot: 1.13.0 -> 1.14.0 2021-04-10 06:23:42 +00:00
R. RyanTM
5131723e93 ccls: 0.20201219 -> 0.20210330 2021-04-10 06:19:39 +00:00
Daniël de Kok
0603c25738 python3Packages.pytorch: remove unused USE_MKL variable
PyTorch will always try to find MKL, USE_MKL does not do anything
anymore. So, we have to rely on MKL not being in the build
environment.
2021-04-10 08:10:28 +02:00
Daniël de Kok
209f4678f2 python3Packages.pytorch: disable building of tests
- We do not run them.
- The test binaries are installed into site-packages by default.
2021-04-10 08:09:38 +02:00
Daniël de Kok
4f876309fe python3Packages.pytorch: convert boolean environment variables
We relied on the stdenv serialization for booleans. However, the
PyTorch configure script expects 0/1. So convert the options to 0/1
values.
2021-04-10 08:08:08 +02:00
R. RyanTM
b20d30e606 cargo-deny: 0.9.0 -> 0.9.1 2021-04-10 06:07:26 +00:00
R. RyanTM
85e62de17b
bazel-kazel: 0.2.1 -> 0.2.2 (#118959) 2021-04-09 22:52:24 -07:00
Wael M. Nasreddine
f3eddda1fb
python3Packages.west: 0.8.0 -> 0.10.1 2021-04-09 22:34:07 -07:00
Bernardo Meurer
debd8ed78f
python3Packages.pynvim: 0.4.2 -> 0.4.3 2021-04-09 22:08:38 -07:00
Ryan Mulligan
9d42670134
Merge pull request #117700 from r-ryantm/auto-update/python3.8-manhole
python38Packages.manhole: 1.6.0 -> 1.7.0
2021-04-09 20:53:02 -07:00
Ryan Mulligan
dd7dc1b724
Merge pull request #118473 from r-ryantm/auto-update/async-profiler
async-profiler: 1.8.4 -> 1.8.5
2021-04-09 20:50:02 -07:00
Ryan Mulligan
82dc205de6
Merge pull request #118511 from r-ryantm/auto-update/librealsense
librealsense: 2.42.0 -> 2.43.0
2021-04-09 20:47:58 -07:00
Martin Weinelt
8735fd1e95
Merge pull request #118944 from fabaff/homematicip
python3Packages.homematicip: init at 1.0.0
2021-04-10 02:19:55 +02:00
Martin Weinelt
e27e160247 python3Packages.pykodi: 0.2.3 -> 0.2.5 2021-04-10 01:31:55 +02:00
Martin Weinelt
47e2cb49d5 python3Packages.jsonrpc-websocket: 1.2.2 -> 3.0.0 2021-04-10 01:29:32 +02:00
Martin Weinelt
3779c01110 python3Packages.jsonrpc-base: 1.1.0 -> 2.0.0
Fetch source from GitHub so we can run tests, update homepage.
2021-04-10 01:29:19 +02:00
Martin Weinelt
d23d0aa3bb python3Packages.jsonrpc-async: 1.1.1. -> 2.0.0
Fetch from GitHub to run tests, update homepage.
2021-04-10 01:28:56 +02:00
Martin Weinelt
e9ad3e3e10 python3Packages.zha-quirks: 0.0.55 -> 0.0.56 2021-04-10 01:28:41 +02:00
Fabian Affolter
7564d5ef16 python3Packages.homematicip: init at 1.0.0 2021-04-10 00:22:23 +02:00
Fabian Affolter
c197fdd498 python3Packages.aiohttp-wsgi: init at 0.8.2 2021-04-09 23:44:02 +02:00
Sandro
c1c617ff8d
Merge pull request #118895 from fabaff/bump-pywizlight
python3Packages.pywizlight: 0.4.5 -> 0.4.6
2021-04-09 23:03:42 +02:00
Fabian Affolter
c5a877a538 python3Packages.pyruckus: init at 0.14 2021-04-09 22:28:30 +02:00
Sandro
cbdbd24665
Merge pull request #118919 from fabaff/omnilogic 2021-04-09 21:57:00 +02:00
Johannes Schleifenbaum
3b46cdcc61
protoc-gen-twirp: 7.1.1 -> 7.2.0 2021-04-09 21:35:39 +02:00
Peter Simons
cb29de02c4
Merge pull request #118350 from NixOS/haskell-updates
Update Haskell package set to Stackage Nightly 2021-04-02 (plus other fixes)
2021-04-09 20:50:19 +02:00
Peter Simons
98f3f2f651 hackage2nix: keep the old version of refinery around for haskell-language-server 2021-04-09 20:31:28 +02:00
Peter Simons
b78820de3f haskell-reflex-dom-core: add jailbreak to allow latest version of constraints 2021-04-09 20:23:33 +02:00
Peter Simons
adeee0d02e haskell-dependent-sum-aeson-orphans: add jailbreak to allow latest version of constraints 2021-04-09 20:21:26 +02:00
Peter Simons
37905dfbf3 hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.17.0-2-g2ef7e72 from Hackage revision
ca0d273639.
2021-04-09 20:10:28 +02:00
Peter Simons
0868b8fb21 hackage2nix: update list of broken packages to fix evaluation on Hydra 2021-04-09 20:05:19 +02:00
Fabian Affolter
409af093e7 python3Packages.pyezviz: init at 0.1.8.7 2021-04-09 19:25:00 +02:00
Fabian Affolter
61a5c65f0d python3Packages.omnilogic: init at 0.4.3 2021-04-09 18:44:41 +02:00
Frederik Rietdijk
0656d546fb
Merge pull request #118312 from NixOS/staging-next
Staging next
2021-04-09 18:29:47 +02:00
Maximilian Bosch
0b938eae3b
Merge pull request #117005 from tomberek/go-yq/test
yq-go: add simple test
2021-04-09 18:01:49 +02:00
Martin Weinelt
79d2bf4c84
Merge pull request #118809 from fabaff/webexteamssdk 2021-04-09 18:01:05 +02:00
Maximilian Bosch
45f94b613a
Merge pull request #117510 from r-ryantm/auto-update/py-spy
py-spy: 0.3.4 -> 0.3.5
2021-04-09 17:57:45 +02:00
Fabian Affolter
af602afe9d python3Packages.nad-receiver: init at 0.2.0 2021-04-09 17:53:54 +02:00
Rouven Czerwinski
56fc7c44db usbsdmux: 0.1.8 -> 0.2.0 2021-04-09 17:42:28 +02:00
Dennis Gosnell
b6043ee295
Merge pull request #118907 from cdepillabout/spago-0.20.0
spago: 0.19.0 -> 0.20.0
2021-04-10 00:40:43 +09:00
Maximilian Bosch
01e4f34873
Merge pull request #118079 from r-ryantm/auto-update/notcurses
notcurses: 2.2.3 -> 2.2.4
2021-04-09 17:38:00 +02:00
(cdep)illabout
8c36813a42
haskellPackages: remove dhall_1_37_1 extra package because it is no longer used 2021-04-10 00:04:42 +09:00
Fabian Affolter
027c28b18a python3Packages.pyintesishome: init at 1.7.7 2021-04-09 17:03:10 +02:00
Martin Weinelt
7ab382b585
Merge pull request #118436 from fabaff/bump-plexwebsocket 2021-04-09 16:57:45 +02:00
(cdep)illabout
84902fa84a
spago: 0.19.0 -> 0.20.0 2021-04-09 23:47:09 +09:00
Fabian Affolter
4dc34642e3 python3Packages.webexteamssdk: init at 1.6 2021-04-09 16:44:12 +02:00
Richard Marko
2b3077c027 haskellPackages.update-nix-fetchgit: dontCheck 2021-04-09 16:27:11 +02:00
Florian Beeres
8fa0c918da haskellPackages.capability: unbreak
The package compiles and works just fine without any additional changes
2021-04-09 16:12:34 +02:00
Richard Marko
552cfe19a1 haskellPackages.cereal-time: doJailbreak 2021-04-09 15:17:28 +02:00
Richard Marko
25b5fe7caf haskellPackages.language-lua: doJailbreak 2021-04-09 15:17:28 +02:00
Richard Marko
2f665594b6 haskellPackages.cayene-lpp renamed to cayenne-lpp, fix in maintainer list
I've made a costly typo. Old package is now deprecated.
2021-04-09 15:17:28 +02:00
Richard Marko
b1353fcf59 haskellPackages.alex-tools: not broken 2021-04-09 15:17:28 +02:00
Richard Marko
fc421749be haskellPackages.ttn-client: not broken 2021-04-09 15:17:28 +02:00
Richard Marko
a3dfde6476 haskellPackages.libmodbus: fix (lib)modbus system dependency 2021-04-09 15:17:28 +02:00
sternenseemann
27077f1149 python3Packages.pypandoc: vendor patches, test w/o pandoc-citeproc
* Translate all seds in postPatch into patches (for setting the static
  path and skipping the test that needs network access)
* The patch for the changed pandoc heading generation was simplified:
  Since we know our pandoc version is always that new, we can skip the
  version check.
* Skip the test for pandoc-citeproc: pandoc-citeproc has been deprecated
  in favor of pandoc --citeproc by the upstream pandoc developer.
  pypandoc's testsuite doesn't reflect this yet (although it should
  support --citeproc theoretically) to avoid depending on
  pandoc-citeproc for the checkPhase (as we expect it to break again or
  continue to be broken) we skip the test requiring pandoc-citeproc.

The breakage of pypandoc due to pandoc-citeproc was pointed out here:
https://github.com/NixOS/nixpkgs/pull/116635#issuecomment-809258707
Thank you!
2021-04-09 14:36:01 +02:00
sternenseemann
f0ceaf880e ocamlPackages.mirage-crypto*: 0.9.1 -> 0.9.2
https://github.com/mirage/mirage-crypto/releases/tag/v0.9.2
2021-04-09 14:23:12 +02:00
sternenseemann
6fe82e59ee haskellPackages.fuzzyfind: remove unnecessary override
https://github.com/runarorama/fuzzyfind/issues/1 was closed with release
2.1.0.
2021-04-09 14:18:43 +02:00
github-actions[bot]
c876eb99be
Merge master into staging-next 2021-04-09 12:06:22 +00:00
Fabian Affolter
0625b9a7af python3Packages.pywizlight: 0.4.5 -> 0.4.6 2021-04-09 13:36:18 +02:00
Martin Weinelt
afd73abc4b
Merge pull request #118887 from dotlambda/pyturbojpeg-1.4.2
python3Packages.pyturbojpeg: 1.4.1 -> 1.4.2
2021-04-09 12:22:14 +02:00
Martin Weinelt
864dbf44a3
Merge pull request #118865 from mweinelt/home-assistant 2021-04-09 11:58:28 +02:00
sternenseemann
0767374c40 haskellPackages.ghc-bignum: unbreak
* Enable exactly one backend (Native seems like the safest choice, but
  GMP also seems sane, interested to hear opinions on this!)
* Apply patch which fixes a type mismatch issue between Natural.hs and
  Natural.hs-boot.
2021-04-09 11:31:52 +02:00
Alexander Bantyev
544664d484
Merge pull request #112477 from happysalada/fix_build_mix
buildMix: fix: initial try
2021-04-09 12:09:22 +03:00
Robert Schütz
1b0c015b91 python3Packages.zulip: fix build 2021-04-09 11:03:29 +02:00
Sandro
6f630a97e1
Merge pull request #118881 from fabaff/bump-twitterapi
python3Packages.twitterapi: 2.6.8 -> 2.6.10
2021-04-09 11:02:19 +02:00
Robert Schütz
9dc49179e0 python3Packages.urwid-readline: 0.12 -> 0.13 2021-04-09 10:47:45 +02:00
Robert Schütz
63d1bc7972 python3Packages.pyturbojpeg: 1.4.1 -> 1.4.2
https://github.com/lilohuang/PyTurboJPEG/releases/tag/v1.4.2
2021-04-09 10:25:11 +02:00
Ben Siraphob
970b82e7d0 coqtail-math: init at 20201124 2021-04-09 10:05:32 +02:00
Sandro
b5eec8b7fe
Merge pull request #118880 from Emantor/bump/labgrid
labgrid: 0.3.2 -> 0.3.3
2021-04-09 09:51:54 +02:00
Sandro
ce5c919122
Merge pull request #118844 from SuperSandro2000/python38Packages.h5py
python38Packages.h5py: 3.1.0 -> 3.2.1
2021-04-09 09:18:32 +02:00
Fabian Affolter
48491c72ce python3Packages.twitterapi: 2.6.8 -> 2.6.10 2021-04-09 08:57:05 +02:00
github-actions[bot]
496c7d3e9d
Merge master into staging-next 2021-04-09 06:05:54 +00:00
sternenseemann
4462a1f678 ocamlPackages.irmin*: 2.5.1 -> 2.5.2
https://github.com/mirage/irmin/releases/tag/2.5.2
2021-04-09 07:57:04 +02:00
Rouven Czerwinski
aececed26b labgrid: 0.3.2 -> 0.3.3 2021-04-09 07:56:06 +02:00
Mario Rodas
c9c90e31a3
Merge pull request #118591 from humancalico/libnbd-update
libnbd: 1.7.4 -> 1.7.5
2021-04-08 23:16:50 -05:00
Mario Rodas
b20a244252
Merge pull request #118777 from marsam/update-nodejs
nodejs: 10.24.0 -> 10.24.1, 12.22.0 -> 12.22.1, 14.16.0 -> 14.16.1
2021-04-08 23:13:52 -05:00
Sandro
6fc2b7ecc2
Merge pull request #116570 from dnr/gphotos-sync 2021-04-09 02:55:52 +02:00
Sandro
f37e906a18
python3Packages.wakeonlan: change license to MIT 2021-04-09 02:54:03 +02:00
Sandro
d5b46bbaa0
Merge pull request #118723 from oxalica/bump/electron-cash 2021-04-09 02:32:04 +02:00
Peter Simons
fd8fed8473 hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.17.0-2-g2ef7e72 from Hackage revision
75dd0de40c.
2021-04-09 02:30:30 +02:00
Sandro
14ef96000d
Merge pull request #118730 from TethysSvensson/master
flint: 2.5.2 -> 2.7.1
2021-04-09 02:24:19 +02:00
github-actions[bot]
c99b6f5343
Merge master into staging-next 2021-04-09 00:16:01 +00:00
Sandro Jäckel
40180ad725
python38Packages.h5py: 3.1.0 -> 3.2.1 2021-04-09 02:13:46 +02:00
Sandro
77de1a7f9c
Merge pull request #118847 from SuperSandro2000/jupyterlab
pythonPackages.jupyterlab: move jupyter-packaging to nativeBuildInput…
2021-04-09 02:12:50 +02:00
tnias
01cf5e4d68
dtc: add yaml support and enable tests (#118700) 2021-04-09 02:02:36 +02:00
Martin Weinelt
67b7e63d41
python3Packages.speedtest-cli: 2.1.2 -> 2.1.3 2021-04-09 01:25:57 +02:00
Edward Tjörnhammar
af45b82a37
jetbrains.jdk: 11.0.7-b64 -> 11.0.10-b37 2021-04-09 00:47:31 +02:00
Sandro
a5f6343808
Merge pull request #118702 from aanderse/conan
conan: 1.27.0 -> 1.35.0
2021-04-08 22:43:24 +02:00
sternenseemann
798dbc8478 haskellPackages.hgeometry-combinatiorial: unbreak
An upper bound on vector-builder was introduced which includes 0.3.8,
but excludes 0.3.8.1. I don't know why, but the changes between 0.3.8
and 0.3.8.1 look harmless enough to ignore. Possibly the
hgeometry-combinatorial maintainer operated under the assumption that
the author of vector-builder would always use version numbers which only
had 3 components.
2021-04-08 22:15:48 +02:00
sternenseemann
dd00a9aff5 haskellPackages.colourista: remove now obsolete patch
The patch we applied previously was included in a new release.
2021-04-08 22:07:44 +02:00
Sandro Jäckel
2895af7161
pythonPackages.jupyterlab: move jupyter-packaging to nativeBuildInputs, add pythonImportsCheck 2021-04-08 21:53:54 +02:00
Sandro
34a8f3d68d
Merge pull request #118808 from marsam/update-grpc 2021-04-08 21:22:50 +02:00
Frederik Rietdijk
4117f541cc
Merge pull request #118737 from FRidh/panel
python3Packages.{panel,bokeh}: update packages
2021-04-08 21:11:05 +02:00
github-actions[bot]
85b57e4446
Merge master into staging-next 2021-04-08 18:14:17 +00:00
Robert Schütz
c6bd90d48f
Merge pull request #118391 from dotlambda/openzwave-official
openzwave: use official version
2021-04-08 19:02:41 +02:00
Sandro
9e377a6ce4
Merge pull request #118823 from vcunat/p/tracker-i686-stop-gap
tracker: fixup i686 temporarily
2021-04-08 18:26:57 +02:00
Martin Weinelt
9803c87c07
Merge pull request #118758 from mweinelt/home-assistant 2021-04-08 18:06:27 +02:00
Michael Weiss
915e3fec91
Merge pull request #116544 from Synthetica9/sway-1.16
wlroots: 1.12 -> 1.13, sway: 1.5 -> 1.6
2021-04-08 17:53:42 +02:00
Vladimír Čunát
0c39a0b800
tracker: fixup i686 temporarily
Without causing rebuild on other platforms, as that would have to be
slowed down due to staging.
2021-04-08 17:36:57 +02:00
Patrick Hilhorst
c4976f3565
wlroots{,_0_12}: add synthetica (myself) as maintainer 2021-04-08 17:24:24 +02:00
Patrick Hilhorst
e03dde82a7
wlroots: 0.12.0 -> 0.13.0
Pulls in an upstream patch for dwl. Explicitly takes xcbutilrenderutil
as an argument to avoid pulling in all of xorg.
2021-04-08 17:24:23 +02:00
Patrick Hilhorst
49299adf4e
wlroots_0_12: init at 0.12.0
Uses the old wlroots in places where the new one isn't yet compatible.

Co-authored-by: Alyssa Ross <hi@alyssa.is>
Co-authored-by: Michael Weiss <dev.primeos@gmail.com>
2021-04-08 17:23:20 +02:00
Jörg Thalheim
97cdea3f94
Merge pull request #117170 from r-ryantm/auto-update/cargo-deny
cargo-deny: 0.8.9 -> 0.9.0
2021-04-08 15:23:10 +01:00
Robert Schütz
2e8e365f99
Merge pull request #118817 from dotlambda/smartypants-src
python3Packages.smartypants: fix src url
2021-04-08 16:19:59 +02:00
Michael Weiss
2b95bf44b8
llvmPackages_12: 12.0.0-rc4 -> 12.0.0-rc5
Note: Tested in #116646.
2021-04-08 16:12:48 +02:00
Sandro
b90403a4f9
Merge pull request #118816 from dotlambda/ytmusicapi-0.15.1
python3Packages.ytmusicapi: 0.15.0 -> 0.15.1
2021-04-08 15:51:40 +02:00
Dmitry Kalinkin
01de9f2d45 python3Packages.smartypants: fix src url
Co-authored-by: Robert Schütz <dev@schuetz-co.de>
2021-04-08 15:46:25 +02:00
Sandro
f9544583b6
Merge pull request #118584 from fabaff/nats 2021-04-08 15:40:32 +02:00
Robert Schütz
8a8a05839a python3Packages.ytmusicapi: 0.15.0 -> 0.15.1
https://github.com/sigma67/ytmusicapi/releases/tag/0.15.1
2021-04-08 15:29:07 +02:00
Sandro Jäckel
cd143399ec
Revert "python3Packages.smartypants: fix src url"
This reverts commit acc3b5ad90.
2021-04-08 15:27:40 +02:00
Sandro
381aaa8547
Merge pull request #118795 from veprbl/pr/smartypants.py_fix_src
python3Packages.smartypants: fix src url
2021-04-08 15:25:49 +02:00
Jörg Thalheim
8865b1a8ce
Merge pull request #118803 from SuperSandro2000/radare-cleanup
Radare cleanup
2021-04-08 13:45:41 +01:00
Jörg Thalheim
e0e264e6ab
Merge pull request #118776 from marsam/marsam-codeowners
codeowners: add marsam to Ruby and PostgreSQL
2021-04-08 13:45:16 +01:00