Commit graph

41176 commits

Author SHA1 Message Date
Robert Schütz 00a9057f75 Revert "home-assistant: pin to python 3.6"
This reverts commit 2fb90e57fd.
Home Assistant now builds fine with Python 3.7.
2018-12-12 17:05:42 +01:00
edef f9b0781938 doh-proxy: stick with Python 3.6 for now
It currently breaks on Python 3.7 due to `async` becoming a reserved keyword
2018-12-12 13:02:53 +00:00
Gabriel Ebner c556e6f1f4 notmuch: use python 3
Fixes #51822
2018-12-12 13:32:35 +01:00
Gabriel Ebner a9d7a31817 alot: 0.7 -> 0.8 2018-12-12 13:31:32 +01:00
Gabriel Ebner 890bee19c5 pythonPackages.gpgme: support python 3 2018-12-12 13:30:52 +01:00
edef fdd566cf0b
Merge pull request #51908 from rawkode/feature/lxrandr
lxrandr: init at 0.3.1
2018-12-12 12:18:03 +00:00
edef e10f8471d1
Merge pull request #51650 from gnidorah/me_cleaner
me_cleaner: init at 1.2
2018-12-12 12:15:57 +00:00
David McKay 125ad34dc8 lxrandr: init at 0.3.1 2018-12-12 11:25:45 +00:00
Alyssa Ross 812805110b
Merge pull request #51887 from AtnNn/ikos
ikos: init at 2.1
2018-12-12 09:06:36 +00:00
Jörg Thalheim 8e3b400b45
Merge pull request #51876 from Mic92/go-cleanup
Go cleanup: use buildGoPackage whenever possible
2018-12-12 08:56:21 +00:00
Matthew Bauer 465a5e1d97
Merge pull request #51880 from matthewbauer/simavr-mac
simavr: work on macOS
2018-12-11 20:36:58 -06:00
Etienne Laurin 328fbcff60 ikos: init at 2.1 2018-12-12 00:09:24 +00:00
Jörg Thalheim 56fdf7a296
acbuild: remove
Project is unmaintained. The project page propose alternatives:

https://github.com/containers/build#this-project-is-currently-unmaintained
2018-12-11 22:08:11 +00:00
Matthew Bauer 79e886a61b simavr: work on macOS 2018-12-11 14:40:48 -06:00
Izorkin 3c15573712
phpPackages.couchbase: 2.3.4 -> 2.6.0 2018-12-11 20:11:36 +01:00
Izorkin 72b3ceaa2f
phpPackages.memcached: fix build with php73 2018-12-11 20:11:35 +01:00
Izorkin 43b2734f53
phpPackages.xdebug: fix build with php73 2018-12-11 20:11:35 +01:00
Izorkin b0b623e034
phpPackages: disable build with php73 2018-12-11 20:11:34 +01:00
Izorkin 2fb2d1f67a
phpPackages.yaml: 2.0.2 -> 2.0.4 2018-12-11 20:11:33 +01:00
Izorkin 6a9f31f34c
phpPackages.v8js: 1.4.1 -> 2.1.0 2018-12-11 20:11:33 +01:00
Izorkin 6a34ad0c2e
phpPackages.igbinary: 2.0.4 -> 2.0.8 2018-12-11 20:11:32 +01:00
Izorkin cea4312e56
phpPackages.imagick: fix build with php73 2018-12-11 20:11:31 +01:00
Izorkin 23190fb3a9
phpPackages.apcu_bc: fix build with php73 2018-12-11 20:11:31 +01:00
Izorkin c120d94071
phpPackages.apcu: 5.1.11 -> 5.1.15 2018-12-11 20:11:30 +01:00
Izorkin bfe31dfdcd
unit: update php module config 2018-12-11 20:11:28 +01:00
Izorkin 6c8b7ac931
unit: add php module 7.3 2018-12-11 20:11:08 +01:00
Izorkin ff7192d4d0
php: init at 7.3.0 2018-12-11 20:11:05 +01:00
Jörg Thalheim 8b3cacfdcf
logstash-forwarder: remove
This project was replaced by file beat:
https://github.com/elastic/logstash-forwarder#logstash-forwarder
2018-12-11 18:30:45 +00:00
Alexey Shmalko ebd47d7b54
Merge pull request #51838 from spacekookie/railcar
railcar: init at 1.0.4
2018-12-11 20:18:55 +02:00
Mario Rodas 850b2592c3
pythonPackages.robotframework-seleniumlibrary: init at 3.2.0 2018-12-11 09:10:00 -05:00
Mario Rodas 0890aa4d6a
pythonPackages.mockito: init at 1.1.1 2018-12-11 09:10:00 -05:00
Mario Rodas e3a0c05a80
pythonPackages.approvaltests: init at 0.2.4 2018-12-11 09:09:59 -05:00
Mario Rodas f52cb0a6b4
pythonPackages.robotstatuschecker: init at 1.3 2018-12-11 09:09:59 -05:00
Samuel Dionne-Riel 31298112f3 caffe2: Use python36Packages explicitly.
Fallout from 0f38d9669f
2018-12-11 11:31:15 +01:00
Ivan ca8b128aa1 credstash: add standalone Python application (#51807)
credstash was only available as a library. Provide it as a standalone
application as well.

In order for this to work, I needed to remove the copy of
the library that's placed in $out/bin and marked executable
during the install phase. Other than the patched shebang and
executable bit, it's identical to the library that's installed to
$out/lib/python3.7/site-packages.

Before the postFixup has run `wrapPythonPrograms`, $out/bin contains
two Python files -- credstash and credstash.py -- where bin/credstash
is the executable you'd expect a user to invoke from the command-line
and bin/credstash.py contains the credstash module, which bin/credstash
imports.

After `wrapPythonPrograms` has run, bin/credstash is a shell
wrapper around the bin/.credstash-wrapped python entrypoint, and
bin/credstash.py is shell wrapper around bin/.credstash.py-wrapped.
Invoking bin/credstash execs bin/.credstash-wrapped, and that python
script attempts to import the credstash module from bin/credstash.py,
the shell wrapper, rather than either bin/.credstash.py-wrapped or
lib/python3.7/site-packages/credstash.py.

This leads to an error:

    $ credstash get mykey
    Traceback (most recent call last):
      File "/nix/store/hk6yma716w6141lcdh509d6qyyi7zm0i-python3.7-credstash-1.15.0/bin/.credstash-wrapped", line 8, in <module>
        from credstash import main
      File "/nix/store/hk6yma716w6141lcdh509d6qyyi7zm0i-python3.7-credstash-1.15.0/bin/credstash.py", line 2
        export PATH='/nix/store/6lm4gi5iv8fbf1b1mm6g3gfnnv63f1gn-python3-3.7.1/bin:/nix/store/hk6yma716w6141lcdh509d6qyyi7zm0i-python3.7-credstash-1.15.0/bin:/nix/store/2n13gf1zdr39ir5dynxlkqndxgy36g08-python3.7-setuptools-40.4.3/bin:/nix/store/mhnqwpa4y1l81zi4cwx989i8h8z9g67l-python3.7-jmespath-0.9.0/bin:/nix/store/qc6q3a2nv4211wyh7q319v6zzd3ab6pc-python3.7-docutils-0.14/bin'${PATH:+':'}$PATH
                  ^
    SyntaxError: invalid syntax

If we try using `dontWrapPythonPrograms` to resolve this, runtime
dependency lookups fail:

    $ credstash get mykey
    Traceback (most recent call last):
      File "/run/current-system/sw/bin/credstash", line 7, in <module>
        from credstash import main
      File "/nix/store/8rmldlvlv1z1xl7w02dy7f5qhkzdrg8z-python3.7-credstash-1.15.0/bin/credstash.py", line 26, in <module>
        import boto3
    ModuleNotFoundError: No module named 'boto3'

I was able to resolve things by simply removing bin/credstash.py before
the postFixup phase has a chance to wrap any executables. Now the
executable imports the library correctly:

 (shell wrapper)
  bin/credstash
        │      (python executable)
        └─> bin/.credstash-wrapped
                   │                        (python library)
                   └─> lib/python3.7/site-packages/credstash.py
2018-12-11 10:49:27 +01:00
Vincent Laporte 1a04bd4414 ocamlPackages.checkseum: init at 0.0.3
Chekseum is an OCaml library which implements ADLER-32 and CRC32C Cyclic
Redundancy Check. It provides 2 implementation, the first in C and the
second in OCaml.

Homepage: https://github.com/mirage/checkseum
2018-12-11 08:12:27 +00:00
Vincent Laporte e9b43adab7 ocamlPackages.optint: init at 0.0.2
This library provide one module Optint which internally uses an int if
you are in a x64 architecture or an int32 (boxed value) if you are in a
x86 architecture.

Homepage: https://github.com/mirage/optint
2018-12-11 08:12:27 +00:00
Katharina Fey 7641a13447
railcar: init at 1.0.4
Co-authored-by: Alyssa Ross <hi@alyssa.is>
2018-12-11 00:48:50 +01:00
Renaud c9d58d1321
Merge pull request #51763 from pbogdan/add-ant-theme
ant-theme: init at 1.2.0
2018-12-10 22:39:27 +01:00
Vincent Laporte 655231a612 coqPackages.simple-io: init at 0.2
Purely functional IO for Coq.

homepage: https://github.com/Lysxia/coq-simple-io
2018-12-10 15:35:34 +00:00
edef 995d224f44
Merge pull request #51664 from erictapen/tlslite-ng-init
pythonPackages.tlslite-ng: init at 0.7.5, migrate tlslite references to it, delete tlslite
2018-12-10 13:03:27 +00:00
Justin Humm 93bf0a02f5
pythonPackages.tlslite: delete, migrate refs to pythonPackages.tlslite-ng
tlslite has a test failure on Python 3.7 [0]. @tomato42, a commiter of
tlslite and author of tlslite-ng said, that tlslite is abandoned (last
commit 2015) and tlslite-ng should be used as a drop in replacement.

[0] https://github.com/trevp/tlslite/issues/121
2018-12-10 13:45:45 +01:00
Maximilian Bosch f64f8a312f
Merge pull request #51613 from the-kenny/regenerate-node-packages
nodePackages: Regenerate
2018-12-10 13:31:53 +01:00
Moritz Ulrich 6d21e8d361
nodePackages: Regenerate and fix azure-cli
Regenerates the `nixpkgs` NodeJS set (and updates all dependencies
internally).

Also, the `azure-cli` package doesn't build with NodeJS 10, so now
NodeJS 8 is used for `azure-cli`.

Signed-off-by: Maximilian Bosch <maximilian@mbosch.me>
2018-12-10 11:46:46 +01:00
Vincent Laporte 2b66c286be coqPackages.corn: init at 8.8.1 2018-12-10 07:56:32 +00:00
Sarah Brofeldt 8b11a8a336
Merge pull request #51569 from akru/polkadot
polkadot: init at 0.2.17
2018-12-09 18:48:06 +01:00
Maximilian Bosch 10fa7c5707
Merge pull request #51391 from mt-caret/dpt-rp1-py
dpt-rp1-py: init at 2018-10-16
2018-12-09 17:09:24 +01:00
Alexey Shmalko 2801679e4b
Merge pull request #51764 from Taneb/metamath
Metamath: init at 0.167
2018-12-09 13:16:20 +02:00
Nathan van Doorn 395b69a6a0 metamath: init at 0.167 2018-12-09 10:18:25 +00:00
Vincent Laporte 83d84c08b9 filterCoqPackages: honor recurseIntoAttrs 2018-12-09 03:08:54 +00:00