1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 11:32:03 +00:00
Commit graph

6534 commits

Author SHA1 Message Date
Matan Shenhav d59fafd896 pythonPackages.langcodes: init at 1.4.1 2018-04-05 00:10:14 +02:00
Matan Shenhav 8cd264f53f pythonPackages.marisa-trie: init at 0.7.4 2018-04-05 00:02:56 +02:00
Matan Shenhav 3d93a9b1d2 pythonPackages.mecab-python3: init at 0.7 2018-04-05 00:02:56 +02:00
xeji 6b2bc4b5d1 pythonPackages.imbalanced-learn: 0.3.2 -> 0.3.3, fix build
minor bump, fix tests, move to development/python-modules
2018-04-01 01:58:22 +02:00
Robert Schütz f5755a2686
Merge pull request #38028 from Ma27/cleanup-frescobaldi
frescobaldi: 2.0.16 -> 3.0.0; fix build
2018-03-31 17:25:03 +02:00
Maximilian Bosch 8446cd9c32
pythonPackages.poppler-qt5: init at 0.24.2
related to #32883
2018-03-31 17:02:32 +02:00
Maximilian Bosch d50943ad46
pythonPackages.python-ly: init at 0.9.5 2018-03-31 17:01:39 +02:00
Robert Schütz d3b9cabd6e
Merge pull request #37950 from Ma27/fix-mrbob
pythonPackages.mrbob: fix build
2018-03-31 16:57:06 +02:00
Maximilian Bosch 9215e03e17
pythonPackages.mrbob: fix build
Tests broke on Hydra as the `checkPhase` wasn't configured properly. By
explicitly relying on `nosetests` and injecting `LC_ALL` into the
`checkPhase` the tests work again.

The license (bsd3) according to `LICENSE` distributed with the upstream
package wasn't specified in the meta section which could've caused legal
issues.

The expression has been moved into its own file to reduce the length and
complexity of `pkgs/top-level/python-packages.nix`.

See https://hydra.nixos.org/build/70689499/log
See #36453
2018-03-30 18:42:40 +02:00
Pascal Wittmann 47a256003f
pythonPackages.uritemplate_py: 0.3.0 -> 3.0.0 2018-03-30 18:42:35 +02:00
Pascal Wittmann cf6480cba5
pythonPackages.github3_py: 1.0.0a4 -> 1.0.2 2018-03-30 18:42:06 +02:00
Pascal Wittmann 737979c657
pythonPackages.sipsimple: 3.0.0 -> 3.1.1 2018-03-30 18:01:23 +02:00
Pascal Wittmann 0426d9001f
pythonPackages.betamax: 0.8.0 -> 0.8.1 2018-03-30 12:54:43 +02:00
Manuel Reinhardt 91f239e4b0 bugwarrior: 1.4.0 -> 1.5.1 2018-03-30 12:53:30 +02:00
Jörg Thalheim 8c2dafbccd
Merge pull request #30429 from teto/alot
[RDY] init gpg python bindings +  Alot: 0.5.1 -> 0.7.0
2018-03-28 01:03:24 +01:00
Jörg Thalheim 45e4dc0d5d python.pkgs.gpg: rename to gpgme
Let's be honest with what we expose.
2018-03-26 19:25:55 +01:00
James Kay 2e02bcaedc toml: init at 0.9.4 2018-03-25 01:45:51 -05:00
Matthew Justin Bauer 8f3091939b
Merge pull request #37752 from ryantm/fix-urls
treewide: use more HTTPS URLs
2018-03-25 00:40:17 -05:00
Ryan Mulligan b189247ba0 treewide: use more HTTPS URLs
Uses the HTTPS url for cases where the existing URL has a permanent
redirect. For each domain, at least one fixed derivation URL was
downloaded to test the domain is properly serving downloads.

Also fixes jbake source URL, which was broken.
2018-03-24 22:04:25 -07:00
Robin Gloster c71bcb2744
grpcio: use protobuf3_5 2018-03-24 19:37:03 +01:00
Robin Gloster 2e6aacb056
python.pkgs.logster: 7475c53822 -> 1.0.1 2018-03-24 10:35:37 +01:00
Robin Gloster 6a286fcba7
python.pkgs.pygtail: init at 0.8.0 2018-03-24 10:34:57 +01:00
Robert Schütz 1aedde9e34
Merge pull request #37566 from Ma27/init-face-recognition
pythonPackages.face_recognition: init at 1.2.1
2018-03-23 09:55:04 +01:00
Maximilian Bosch c26864122d
pythonPackages.face_recognition: init at 1.2.1
Adds the python package `face_recognition` and its dependency
`face_recognition_models`.

This package is a wrapper for `dlib` which is able to detect faces in a
given image. I checked the package with the following expression:

```
with import ./. { };

stdenv.mkDerivation {
  name = "facetest";
  src = null;
  buildInputs = with pythonPackages; [ face_recognition ];
}
```

The package works perfectly fine in a `nix-shell`:

```
$ nix-shell
[nix-shell:~]$ python
Python 2.7.14 (default, Sep 16 2017, 17:49:51)
[GCC 7.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import face_recognition
>>> img = face_recognition.load_image_file("/home/ma27/me.jpg")
>>> print(face_recognition.face_locations(img))
```
2018-03-21 23:22:45 +01:00
Jörg Thalheim f2feb99990
Merge pull request #37493 from makefu/pkgs/simp_le/0.8.0
simp_le: 0.6.1 -> 0.8.0
2018-03-21 12:03:59 +00:00
Matthieu Coudron a8403b64f8 gpgme: add withPython ? false to enable bindings
Useful for MUAs mostly, like alot
2018-03-21 10:21:39 +09:00
makefu 7a0027804c
josepy: init at 1.0.1 2018-03-20 22:25:02 +01:00
Robert Schütz dceb9ee393
Merge pull request #37439 from dotlambda/python-fixes
Python fixes, cc #36453
2018-03-20 18:10:05 +01:00
Robert Schütz 9f54b031fd pythonPackages.WSME: move expression 2018-03-20 17:32:48 +01:00
Robert Schütz 86e007bd31 pythonPackages.klein: move expression 2018-03-20 17:32:48 +01:00
Robert Schütz a1b9cc7938 pythonPackages.deform: move expression 2018-03-20 17:32:47 +01:00
Robert Schütz 061e79806e pythonPackages.stem: move expression 2018-03-20 17:32:47 +01:00
Robert Schütz fbff08f2f2 pythonPackages.{reviewboard,djblets}: uninit
Djblets is unmaintained: has not been updated since 2015, but had many releases.
Dependency django_pipeline_1_3 is broken and should anyway be removed from pythonPackages because we want to have a consistent package set.
Because the reviewboard package also hasn't been updated since 2015 and depends on djblets, it is removed as well.
2018-03-20 17:32:47 +01:00
Robert Schütz 127045d8e0 pythonPackages.slimit: init at 0.8.1 2018-03-20 10:59:37 +01:00
Robert Schütz ba74cf4d5c pythonPackages.django_pipeline: move expression 2018-03-20 09:58:15 +01:00
Lancelot SIX de63ff83a7
pythonPackages.svg-path: 2.0b1 -> 2.2 2018-03-19 22:39:56 +01:00
Robert Schütz def2a2567d
Merge pull request #34642 from y0no/add_patator
pythonPackages.patator: init at 0.7
2018-03-19 11:59:54 +01:00
y0no 0725d666d6 pythonPackages.patator: init at 0.7 2018-03-19 11:40:57 +01:00
y0no 38719d170d pythonPackages.mysqlclient: init at 1.3.12 2018-03-19 11:40:57 +01:00
y0no c9366518fa pythonPackages.cx_oracle: init at 6.1 2018-03-19 11:40:57 +01:00
y0no a15544d5f5 pythonPackages.ajpy: init at 0.0.2 2018-03-19 11:40:57 +01:00
y0no c9bbf071bd pythonPackages.ipy: 0.74 -> 0.83 2018-03-19 11:40:16 +01:00
Robert Schütz 196b4863de
Merge pull request #35056 from catern/master
pythonPackages.requests-unixsocket: init at 0.1.5
2018-03-19 11:26:18 +01:00
Matthew Justin Bauer afe69ded54
Merge pull request #36414 from erikarvstedt/opentimestamps
Add opentimestamps
2018-03-19 03:57:11 -05:00
Josef Kemetmüller af0f9fa26b pythonPackages.tkinter: fix darwin build 2018-03-18 22:28:46 +01:00
Spencer Baugh 04c3713755 pythonPackages.requests-unixsocket: init at 0.1.5 2018-03-18 17:47:37 +00:00
Robert Schütz 024acca3f4
Merge pull request #37147 from Ma27/fix-thumbor
pythonPackages.thumbor: fix build
2018-03-18 17:18:29 +01:00
Robert Schütz 3d183c14d7
Merge pull request #37250 from dotlambda/python-fixes
Python fixes, cc #36453
2018-03-18 16:39:04 +01:00
Robert Schütz 4779989c4e pythonPackages.dlib: fix build 2018-03-18 16:04:52 +01:00
Robert Schütz a6cbdeaef3 pythonPackages.colander: move expression 2018-03-18 15:52:18 +01:00