1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
Commit graph

5584 commits

Author SHA1 Message Date
Frederik Rietdijk a25e324e06 python.pkgs.audioread: move expression 2017-08-12 09:04:44 +02:00
Frederik Rietdijk abdb58e407 Python: overridePythonPackage -> overridePythonAttrs
to better fit the existing naming scheme.

https://github.com/NixOS/nixpkgs/pull/26155#issuecomment-321279629
2017-08-12 08:58:41 +02:00
Frederik Rietdijk 026b60e49e python.pkgs.sphinx: move expression 2017-08-12 08:58:41 +02:00
Franz Pletz f6931ec4f2 Merge pull request #28166 from mguentner/ipfsapi042post
ipfsapi: 0.4.5-pre -> 0.4.2.post1
2017-08-11 21:46:28 +02:00
Jörg Thalheim b952143a0c Merge pull request #28167 from bcdarwin/paramz
pythonPackages.paramz: init at 0.7.4
2017-08-11 20:20:45 +01:00
Ben Darwin 60da71407a pythonPackages.paramz: init at 0.7.4 2017-08-11 13:28:09 -04:00
Maximilian Güntner f77825618f
ipfsapi: 0.4.5-pre -> 0.4.2.post1
This is not a downgrade, 0.4.5-pre was a unofficial version.
2017-08-11 19:20:22 +02:00
Domen Kožar 486e1c3c16 Merge pull request #27998 from davidak/macOS
replace "Mac OS X" and "OS X" with "macOS"
2017-08-11 13:01:36 +02:00
Robin Gloster 28cc2642f0
treewide: use less phases if not necessary
This removes some skipping of e.g. fixupPhase and cleans up occurences
where this led to duplicating code
2017-08-11 11:40:36 +02:00
Robin Gloster 72457cdebb
pythonPackages.worldengine: fix build 2017-08-11 11:40:36 +02:00
Robin Gloster 37bf3c8782 pythonPackages.distorm3: init at 3.3.4 2017-08-09 21:50:21 +02:00
adisbladis 3ba2300b2d pythonPackages.zodb: 4.0.1 -> 5.2.4 2017-08-09 14:51:01 +02:00
adisbladis f06a5f4935 pythonPackages.transaction: 1.4.3 -> 2.1.2 2017-08-09 14:51:01 +02:00
adisbladis 490df67562 pythonPackages.pecan: 1.0.3 -> 1.2.1 2017-08-09 14:51:01 +02:00
adisbladis 5167116eba pythonPackages.pyramid_tm: Remove outdated package 2017-08-09 14:51:01 +02:00
adisbladis 6d82bac424 pythonPackages.hypatia: Remove outdated package 2017-08-09 14:51:00 +02:00
adisbladis bc6d9b0d46 pythonPackages.repoze_sendmail: Remove outdated package 2017-08-09 14:51:00 +02:00
adisbladis b7b66c31f2 pythonPackages.pyramid_mailer: Remove outdated package 2017-08-09 14:51:00 +02:00
adisbladis 660b225903 pythonPackages.ZEO: Remove outdated package 2017-08-09 14:51:00 +02:00
adisbladis 953484b4e3 pythonPackages.zodburi: Remove outdated package 2017-08-09 14:51:00 +02:00
adisbladis 48b305ca6d pythonPackages.pyramid_zodbconn: Remove outdated package 2017-08-09 14:50:59 +02:00
adisbladis 80ef4d6fc7 pythonPackages.zope_tales: Remove outdated package 2017-08-09 14:50:59 +02:00
adisbladis ced137d980 pythonPackages.zodb3: Remove outdated package 2017-08-09 14:50:59 +02:00
adisbladis c06cfd0404 pythonPackages.zope_security: Remove outdated package 2017-08-09 14:50:59 +02:00
adisbladis fab8f7ac4b pythonPackages.zope_browser: Remove outdated package 2017-08-09 14:50:59 +02:00
adisbladis 5583e3a2bd pythonPackages.zope_publisher: Remove outdated package 2017-08-09 14:50:59 +02:00
adisbladis 64259cdd7c pythonPackages.zope_traversing: Remove outdated package 2017-08-09 14:50:58 +02:00
adisbladis 313ea3827b pythonPackages.zope_sqlalchemy: Remove outdated package 2017-08-09 14:50:58 +02:00
adisbladis 30291227f2 pythonPackages.almir: Remove outdated package 2017-08-09 14:50:58 +02:00
adisbladis 88648d42f4 pythonPackages.zope_container: Remove outdated package 2017-08-09 14:50:58 +02:00
adisbladis a0c1167e0e pythonPackages.zope_browserresource: Remove outdated package 2017-08-09 14:50:58 +02:00
adisbladis 45addeacb0 pythonPackages.aiohttp-cors: Remove zodb3 dependency 2017-08-09 14:50:57 +02:00
Frederik Rietdijk 345b35c48a Python: add buildPythonPackage.overridePythonPackage method.
This allows one to always override the call to `buildPythonPackage`.

In the following example we create an environment where we have the `blaze` package using an older version of `pandas`. We override first the Python interpreter and pass `packageOverrides` which contains the overrides for packages in
the package set.

```
with import <nixpkgs> {};

(let
  python = let
    packageOverrides = self: super: {
      pandas = super.pandas.overridePythonPackage(old: rec {
        version = "0.19.1";
        name = "pandas-${version}";
        src =  super.fetchPypi {
          pname = "pandas";
          inherit version;
          sha256 = "08blshqj9zj1wyjhhw3kl2vas75vhhicvv72flvf1z3jvapgw295";
        };
      });
    };
  in pkgs.python3.override {inherit packageOverrides;};

in python.withPackages(ps: [ps.blaze])).env
```
2017-08-09 11:10:54 +02:00
Casey Rodarmor 2141086af8 python.pkgs.feedgen: init at 0.5.1 2017-08-07 23:58:39 -07:00
davidak 3270aa896b replace "Mac OS X" and "OS X" with "macOS"
as it is the official name since 2016

https://en.wikipedia.org/wiki/Macintosh_operating_systems#Desktop

exception are parts refering to older versions of macOS like

"GUI support for Mac OS X 10.6 - 10.12. Note that Emacs 23 and later [...]"
2017-08-07 21:41:30 +02:00
Michael Weiss 2bc92695bf pythonPackages.aiohttp: 1.1.6 -> 1.3.5 2017-08-06 17:40:53 +02:00
Michael Weiss f17cadadd3 pythonPackages.zipstream: init at 1.1.4 2017-08-06 17:40:53 +02:00
Michael Weiss 15bf0f68c3 pythonPackages.aiohttp-cors: init at 0.5.1 2017-08-06 17:40:53 +02:00
Michael Weiss b0a2ea01c5 python3Packages.zodb: Fix the build
Side note: Not sure if it makes sense that zodb3 depends on zodb (zodb4)
via ZEO.
2017-08-06 14:45:52 +02:00
Michael Weiss 4b0afc169d zpl*: Fix the attribute name of the license
This was simply a typo since the license was added in 2013.
2017-08-06 13:49:18 +02:00
Michael Weiss acb9ca3006 gns3-gui: init at 2.0.3 2017-08-06 01:55:49 +02:00
Daiderd Jordan 4e24cc32bc Merge pull request #27544 from cse-bristol/linode-api-python
linode-api: init at 4.1.1b2
2017-08-05 17:40:33 +02:00
Herwig Hochleitner a37dd362b6 python2-pythondialog: fix --replace on substituteInPlace 2017-08-04 03:31:33 +02:00
Volth 84a6a3683b libvirt: 3.5.0 -> 3.6.0 2017-08-03 13:53:57 +00:00
mimadrid 09e0cc7cc7
Update homepage attributes: http -> https
Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated
https://repology.org/repository/nix_stable/problems
2017-08-03 11:56:15 +02:00
Franz Pletz 77ca756c7a
pythonPackages.supervisor: 3.1.1 -> 3.1.4 (security)
Fixes CVE-2017-11610.
2017-08-01 08:36:38 +02:00
Franz Pletz c217f48c35
searx: 0.11.0 -> 0.12.0 2017-08-01 06:16:03 +02:00
Peter Simons 701d2c89f9 osc: update to version 0.159.0-4-g2d44589 (current git master) 2017-07-31 09:54:56 +02:00
Frederik Rietdijk 740d76371e Merge commit 'ba68231273bea4cba01413fd2a0e56d68db9234c' into HEAD 2017-07-31 09:12:15 +02:00
Frederik Rietdijk bac6f59977 python.pkgs.dosage: broken 2017-07-30 12:58:26 +02:00
Frederik Rietdijk b2608b8910 Merge remote-tracking branch 'upstream/master' into HEAD 2017-07-29 13:08:11 +02:00
Frederik Rietdijk 08f9183d75 python.pkgs.sounddevice: 0.3.6 -> 0.3.8 2017-07-29 13:04:07 +02:00
Frederik Rietdijk 4f296cbaeb python.pkgs.cython: move expression 2017-07-29 13:04:07 +02:00
Frederik Rietdijk 25fa9f2f14 python.pkgs.blaze: move expression 2017-07-29 13:04:07 +02:00
Frederik Rietdijk b714a38bba python.pkgs.cycler: move expression 2017-07-29 13:04:07 +02:00
Frederik Rietdijk 1e605e654f python.pkgs.tornado: 4.4.2 -> 4.5.1 2017-07-28 16:56:33 +02:00
Langston Barrett e985aa5501 pythonPackages.sqlobject: 3.0.0 -> 3.3.0 2017-07-28 16:13:29 +02:00
Langston Barrett 0dea2d20a7 faker: 0.0.4 -> 0.7.17 2017-07-28 16:13:28 +02:00
Langston Barrett 822b09a514 ukpostcodeparser: init at 1.1.0 2017-07-28 16:13:28 +02:00
Langston Barrett d2c0a46797 email_validator: init at 1.0.2 2017-07-28 16:13:28 +02:00
Langston Barrett cb77b9c2e9 formencode: update for dnspython 2017-07-28 16:13:28 +02:00
Langston Barrett cecbb9fdf6 dnspython: 1.14.0 -> 1.15.0 2017-07-28 16:13:28 +02:00
adisbladis 6bd2ac7707 pythonPackages.persistent: 4.0.8 -> 4.2.4.2 2017-07-28 16:13:28 +02:00
adisbladis 61e73427e0 pythonPackages.zodbpickle: 0.5.2 -> 0.6.0 2017-07-28 16:13:28 +02:00
adisbladis 2e34c6d8a9 pythonPackages.zc_lockfile: 1.0.2 -> 1.2.1 2017-07-28 16:13:28 +02:00
Franz Pletz b116fa5ff2
Merge branch 'master' into staging 2017-07-28 16:08:30 +02:00
wisut hantanong f1ef53286d python.pkgs.asn1ate: move to separate expression 2017-07-28 16:07:38 +07:00
wisut hantanong b01adce061 python.pkgs.chainmap: move to separate expression 2017-07-28 16:07:38 +07:00
wisut hantanong 3182658a4f python.pkgs.chai: move to separate expression 2017-07-28 16:07:37 +07:00
wisut hantanong 76c4ec7519 python.pkgs.area53: move to separate expression 2017-07-28 16:07:37 +07:00
wisut hantanong ff0e08c015 python.pkgs.args: move to separate expression 2017-07-28 16:07:37 +07:00
wisut hantanong e77f62df0f python.pkgs.funcsigs: move to separate expression 2017-07-28 16:07:36 +07:00
wisut hantanong f970ee8e7e python.pkgs.astor: move to separate expression 2017-07-28 16:07:36 +07:00
wisut hantanong 6d09e0c9be python.pkgs.apsw: move to separate expression 2017-07-28 16:07:32 +07:00
wisut hantanong 4cae4418e9 python.pkgs.apipkg: move to separate expression 2017-07-28 16:04:11 +07:00
wisut hantanong 8e1a2250e1 python.pkgs.amqplib: move to separate expression 2017-07-28 13:36:38 +07:00
Robert Helgesson 19425c78e2
python-PyICU: 1.9.6 -> 1.9.7 2017-07-27 22:53:32 +02:00
Nikolay Amiantov 4907e58a02 python.pkgs.pyspf: add pydns to dependencies 2017-07-27 17:07:45 +03:00
Nikolay Amiantov 3a04b2c318 python.pkgs.pypolicyd-spf: 1.3 -> 2.0 2017-07-27 17:07:45 +03:00
Nikolay Amiantov 53c3e5ee97 python.pkgs.netifaces: 0.10.5 -> 0.10.6 2017-07-27 17:07:45 +03:00
Nikolay Amiantov c10cf27589 python.pkgs.ipaddr: 2.1.10 -> 2.1.11 2017-07-27 17:07:45 +03:00
Nikolay Amiantov 411fe648bd python.pkgs.pydns: use py3dns 3.1.1a for python3 2017-07-27 17:07:45 +03:00
Nikolay Amiantov a91cb71a83 python.pkgs.python-axolotl: 0.1.35 -> 0.1.39 2017-07-27 17:07:45 +03:00
Lancelot SIX 128430cd3e
pythonPackages.django_1_10: drop
Drop django_1_10 ahead of `release-17.09`[1] branch off. Django-1.10
will not be maintained for the entire lifetime of 17.09 so only the 1.8
and 1.11 branches are maintained (both are LTS versions[2]).

[1] https://groups.google.com/forum/#!topic/nix-devel/vILGXXbeCPg
[2] https://www.djangoproject.com/download/
2017-07-27 11:27:13 +02:00
John Ericson 9be40841ea Merge remote-tracking branch 'upstream/master' into staging-base
Conflicts:
	pkgs/build-support/cc-wrapper/default.nix
	pkgs/build-support/gcc-wrapper-old/builder.sh
	pkgs/build-support/trivial-builders.nix
	pkgs/desktops/kde-4.14/kde-package/default.nix
	pkgs/development/compilers/openjdk-darwin/8.nix
	pkgs/development/compilers/openjdk-darwin/default.nix
	pkgs/development/compilers/openjdk/7.nix
	pkgs/development/compilers/openjdk/8.nix
	pkgs/development/compilers/oraclejdk/jdk-linux-base.nix
	pkgs/development/compilers/zulu/default.nix
	pkgs/development/haskell-modules/generic-builder.nix
	pkgs/misc/misc.nix
	pkgs/stdenv/generic/builder.sh
	pkgs/stdenv/generic/setup.sh
2017-07-26 13:46:04 -04:00
Nikolay Amiantov 44a18ddd31 python.pkgs: move my several packages to separate files 2017-07-26 20:35:59 +03:00
Vladimír Čunát ac4c567c36
pythonPackages.augeas: init at 1.0.2 2017-07-26 17:56:11 +02:00
Nikolay Amiantov fe80dbaae0 python.pkgs.sphfile: init at 1.0.0 2017-07-26 18:36:52 +03:00
Nikolay Amiantov aa4d747ac9 python.pkgs.hmmlearn: init at 0.2.0 2017-07-26 18:36:52 +03:00
Nikolay Amiantov 50ed470a50 python.pkgs.PyChromecast: init at 0.8.1 2017-07-26 18:36:52 +03:00
Frederik Rietdijk 29f91c107f Merge remote-tracking branch 'upstream/master' into HEAD 2017-07-23 11:23:43 +02:00
adisbladis d3be3606df
pythonPackages.substanced: Delete severly outdated package 2017-07-22 10:48:07 +08:00
Thomas Tuegel 6a004bf9c8
Merge branch 'master' into bugfix/staging/stdenv 2017-07-21 20:36:34 -05:00
Glenn Searby de0fb400bf linode-api: init at 4.1.1b1
Added Linode's official Python library for their v4 API.

This should assist with adding Linode support to Nixops (see:
https://github.com/NixOS/nixops/issues/198).

Note that this API is still in beta and subject to changes.
2017-07-21 14:25:48 +01:00
Jörg Thalheim d0bcb41d2d Merge pull request #27524 from therealpxc/arrow
pythonPackages.arrow: 0.7.0 -> 0.10.0
2017-07-21 14:14:44 +01:00
Jörg Thalheim ce67c7c1ac pythonPackages.arrow: move to python-modules 2017-07-21 14:10:05 +01:00
volth 17c8fe21fd libvirt: 3.1.0 -> 3.5.0 (#25411) 2017-07-20 23:31:04 +02:00
Patrick Callahan 98fe450553 pythonPackages.pympler: disable tests on Darwin since the included
psutil test needs /proc
2017-07-20 10:29:52 -07:00
Patrick Callahan eea396ca9b pythonPackages.arrow: 0.7.0 -> 0.10.0 2017-07-20 10:05:15 -07:00
Benno Fünfstück e1c57c4698 pyelftools: 0.23 -> 0.24 2017-07-19 18:40:14 +02:00
Benno Fünfstück b66858582c python-pwntools: 3.7.0 -> 3.7.1 2017-07-19 18:17:48 +02:00
Jörg Thalheim cd2724db50 Merge pull request #27497 from wizzup/cleanup-pythonPackages
Cleanup pkgs/top-level/python-packages.nix
2017-07-19 13:16:41 +01:00
wisut hantanong ccf0468a84 python.pkgs.python-uinput : move to separate expression 2017-07-19 18:23:11 +07:00
wisut hantanong 84c3055620 python.pkgs.python-editor : move to separate expression 2017-07-19 17:46:07 +07:00
wisut hantanong ff6797e8aa python.pkgs.aniso8601 : move to separate expression 2017-07-19 17:29:51 +07:00
wisut hantanong 4206da05b0 python.pkgs.ansicolors : move to separate expression 2017-07-19 17:23:52 +07:00
Frederik Rietdijk 3a5735ca06 Merge pull request #27351 from adisbladis/zope_bump
Bump Zope packages to support Python 3.6
2017-07-19 11:45:30 +02:00
wisut hantanong 9b313484de python.pkgs.alabaster : move to separate expression 2017-07-19 16:43:01 +07:00
wisut hantanong 5eea07391e python.pkgs.aiodns : move to separate expression 2017-07-19 16:32:53 +07:00
wisut hantanong af02f13e25 python.pkgs.afew : move to separate expression 2017-07-19 16:23:28 +07:00
wisut hantanong 68bcf522c7 python.pkgs.adal : move to separate expression 2017-07-19 16:04:59 +07:00
wisut hantanong c21e915c97 python.pkgs.actdiag : move to separate expression 2017-07-19 15:59:47 +07:00
wisut hantanong fd17424580 python.pkgs.acme-tiny : move to separate expression 2017-07-19 15:50:21 +07:00
Jörg Thalheim 37d87343bf python-gnupg: move out of python-packages 2017-07-18 22:37:56 +01:00
Maximilian Güntner e7abb9b8ec
python-gnupg: 0.4.0 -> 0.4.1 and enable tests 2017-07-18 18:11:36 +02:00
adisbladis 7d19959ac5
pythonPackages.zconfig: 3.0.3 -> 3.2.0 2017-07-18 18:02:05 +08:00
adisbladis 8ea9602ed8
pythonpackages.zope_interface: 4.1.3 -> 4.4.2 2017-07-18 18:02:04 +08:00
adisbladis 4ebe73dc1b
pythonpackages.zope_testrunner: 4.4.10 -> 4.7.0 2017-07-18 18:01:56 +08:00
Jörg Thalheim 26f85e4253 Merge pull request #27410 from florianjacob/journalwatch
journalwatch & journalwatch service: init at 1.1.0
2017-07-18 08:19:33 +01:00
Dan Peebles b4ee24d5b1 pants13-pre: remove from pythonPackages
Sorry, I broke evaluation in my last pants commit!
2017-07-17 12:13:45 -04:00
Dan Peebles 8253fc2ae5 pants: 1.2.1 -> 1.3.0
I'm also removing the pants13-pre attribute since it's unnecessary and I
don't want to maintain 1.4.x prereleases yet.

I'm temporarily taking out the pants native rust engine shenanigans until
I can get a nix-native rust build of it to work (it works on Linux but
not on Darwin!)
2017-07-17 10:37:52 -04:00
Lancelot SIX 9bb9d93ee7 pythonPackages.pyparsing: 2.1.10 -> 2.2.0 2017-07-17 14:23:48 +02:00
Lancelot SIX f7179c0474 pythonPackages.celery: fix tests for python3.6 2017-07-17 14:23:48 +02:00
Lancelot SIX a8dd4d8e53 pythonPackages.pillow: 3.4.2 -> 4.2.1 2017-07-17 14:23:47 +02:00
Lancelot SIX 1e06824b3b pythonPackages.olefile: init at 0.44 2017-07-17 14:23:47 +02:00
Lancelot SIX e0f988fc46 pythonPackages.kombu: fix tests for python3.6 2017-07-17 14:23:47 +02:00
Tom Hunger 567b84dd50 python.pkgs.pytorch: init at 0.1.12 2017-07-17 14:08:15 +02:00
Frederik Rietdijk 3eceecb90d Merge remote-tracking branch 'upstream/master' into HEAD 2017-07-17 13:52:01 +02:00
Jörg Thalheim f31773b852 tarsnapper: 0.2.1 -> 0.4
- project is not a python library -> move out of pythonPackages.
- also enable tests
2017-07-16 11:12:38 +01:00
Florian Jacob 63bb133373 journalwatch & journalwatch service: init at 1.1.0 2017-07-16 00:14:19 +02:00
Tuomas Tynkkynen c3d9ec531b pythonPackages.unittest2: Fix missing argument to substituteInPlace 2017-07-16 01:06:56 +03:00
wisut hantanong a5d75f0f18 python.pkgs.yapf: move to separate expression
fixes #27379
2017-07-15 17:40:55 +01:00
wisut hantanong 5529758791 python.pkgs.jsonref: move to separate expression 2017-07-15 17:40:55 +01:00
wisut hantanong f0ac823696 python.pkgs.intervaltree: move to separate expression 2017-07-15 17:40:55 +01:00
wisut hantanong cca503b389 python.pkgs.packaging: move to separate expression 2017-07-15 17:40:55 +01:00
wisut hantanong 9115f68bde python.pkgs.pytoml: move to separate expression 2017-07-15 17:40:55 +01:00
wisut hantanong b493824162 python.pkgs.pypandoc: move to separate expression 2017-07-15 17:40:55 +01:00
wisut hantanong 911655fe5f python.pkgs.yamllint: move to separate expression 2017-07-15 17:40:55 +01:00
wisut hantanong 33bcafcf5b python.pkgs.stripe: move to separate expression 2017-07-15 17:40:55 +01:00
wisut hantanong 4546623b37 python.pkgs.vine: move to separate expression 2017-07-15 17:40:55 +01:00
wisut hantanong 2857dbd497 python.pkgs.zeroconf: move to separate expression 2017-07-15 17:40:55 +01:00
wisut hantanong d437a722af python.pkgs.acme: move to separate expression 2017-07-15 17:40:55 +01:00
wisut hantanong ee1022bf26 python.pkgs.vega: move to separate expression 2017-07-15 17:40:55 +01:00
wisut hantanong 2ce14a8ce9 python.pkgs.altair: move to separate expression 2017-07-15 17:40:54 +01:00
wisut hantanong f6b103b51e python.pkgs.aafigure: move to separate expression 2017-07-15 17:40:54 +01:00
wisut hantanong eed3b4991b python.pkgs.unifi: move to separate expression 2017-07-15 17:40:54 +01:00
wisut hantanong 3e75b0fd12 python.pkgs.pygame_sdl2: move to separate expression 2017-07-15 17:40:54 +01:00
wisut hantanong 6506c41fd9 python.pkgs.discid: move to separate expression 2017-07-15 17:40:54 +01:00
wisut hantanong 501eb9712e python.pkgs.emcee: move to separate expression 2017-07-15 17:40:54 +01:00
wisut hantanong 85239d1455 python.pkgs.ansicolor: move to separate expression 2017-07-15 17:40:54 +01:00
wisut hantanong 2d546a98e2 python.pkgs.acoustics: move to separate expression 2017-07-15 17:40:54 +01:00
wisut hantanong bcb73a13e3 python-packages.django_tagging_0_3: use overrideAttrs 2017-07-15 17:40:54 +01:00
wisut hantanong eff03340c4 python.pkgs.django_tagging: move to separate expression 2017-07-15 17:40:54 +01:00
Aristid Breitkreuz 78fc7269be paperwork: 1.0.6.1 -> 1.2 2017-07-15 15:10:14 +02:00
Jörg Thalheim c29b5b5a40 Merge pull request #27350 from veprbl/slurm
Bump slurm, add pyslurm
2017-07-13 09:32:51 +01:00
Dmitry Kalinkin 00d73c4240 python2Packages.pyslurm: init 2017-07-13 03:13:05 -04:00
Langston Barrett 7b27f7c28f pycodestyle: 2.0.0 -> 2.3.1 2017-07-13 00:32:27 +00:00
Jörg Thalheim 575ce53d14 Merge pull request #27296 from lsix/update_django_compressor
pythonPackages.django_compressor: 1.5 -> 2.1.1
2017-07-12 20:34:24 +01:00
Frederik Rietdijk b61238243c Merge pull request #27079 from FRidh/virtualenvwrapper
virtualenvwrapper: only add Python to $PATH, fixes #26982
2017-07-11 11:58:00 +02:00
Lancelot SIX e200a97d6a
pythonPackages.django_compressor: 1.5 -> 2.1.1 2017-07-11 09:59:12 +02:00
Lancelot SIX 73076f3252
pythonPackages.django_appconf: 1.0.1 -> 1.0.2 2017-07-11 09:59:12 +02:00
Lancelot SIX a2c5fbe56d
pythonPackages.rcssmin: init at 1.0.6 2017-07-11 09:44:12 +02:00
Lancelot SIX fbf3f4d473
pythonPackages.rjsmin: init at 1.0.12 2017-07-11 09:43:30 +02:00
Victor Calvert bdabf6a6f2 pythonPackages.mechanize: 0.2.5 -> 0.3.5 2017-07-07 18:37:04 +02:00
Frederik Rietdijk fbbf5e79c3 python.pkgs.virtualenv: move to separate expression 2017-07-07 17:59:32 +02:00
Domen Kožar 0945a5b462
Add pythonPackages.google-compute-engine 2017-07-04 09:54:00 +02:00
Johannes Frankenau 063f110e17 urlscan: 0.8.3 -> 0.8.6 (#27102)
* urlscan: 0.8.3 -> 0.8.6

Moved from python-packages.nix to all-packages.nix because this is not
a Python library but just a Python application.

* Update default.nix

* Update all-packages.nix

* Update default.nix

* Update all-packages.nix
2017-07-04 09:31:36 +02:00
Théo Zimmermann 753aab1494 pythonPackages.codecov: init at 2.0.9 (#27018)
* pythonPackages.codecov: init at 2.0.9

* Update default.nix
2017-07-03 20:12:46 +02:00
Frederik Rietdijk 1336fde8ce Merge pull request #26985 from Zimmi48/add_markdownsuperscript
pythonPackage.markdownsuperscript: init at 2.0.0
2017-07-03 20:11:12 +02:00
Théo Zimmermann ac86016094 pythonPackage.markdownsuperscript: init at 2.0.0 2017-07-03 12:50:11 +02:00
Frederik Rietdijk 196273e177 virtualenvwrapper: only add Python to $PATH, fixes #26982 2017-07-03 10:17:27 +02:00
Frederik Rietdijk d15e20f9c9 Merge pull request #26397 from FRidh/django
python.pkgs.django cleanup
2017-07-02 11:22:14 +02:00
Lancelot SIX 70e169460a pythonPackages: mark disabled and broken packages 2017-07-02 11:21:21 +02:00
Jörg Thalheim 5c45f341f1 pythonPackages.intervaltree: fix evaluation 2017-07-02 01:13:18 +01:00
Benno Fünfstück b16ed16c99 python-pwntools: 3.1 -> 3.7 (including dependencies) 2017-07-01 23:23:25 +02:00
Frederik Rietdijk 8a62a9b064 Merge pull request #26125 from volth/webkitgtk-naming
rename webkitgtk24x⇒webkitgtk24x-gtk3; webkitgtk2⇒webkitgtk24x-gtk2
2017-06-28 13:54:38 +02:00
Benjamin Staffin 1856119466 python-gflags: 2.0 -> 3.1.1 (#26858)
* python-gflags: 2.0 -> 3.1.1

* python-gflags: split out to new python-modules dir

* python-gflags: fix tests
2017-06-28 10:42:13 +02:00
Langston Barrett 6fd4c3956e django-polymorphic: init at 1.2 2017-06-27 21:12:29 +00:00
Shea Levy 551dcb6783 Add ansible 2.3 2017-06-27 15:22:31 -04:00
Robert Vollmert c3da83cd40 v8_3_16_14: fix OS X build
Issues addressed:
- xcode build failed with
    ... was built for newer OSX version (10.10) than being linked (10.5)
  fixed by setting GYP mac deployment target to the nix value
- a gyp bug when SDKROOT is not set (and removed an orphaned gyp patch
- path to python in generated gyp-mac-tool
- noisy build due to static assert warnings, by silencing warnings
- use of system xcodebuild and libtool replaced by darwin.cctools
2017-06-26 21:28:43 +02:00
Roman Volosatovs 69eddfa090 pythonPackages.pylast: 0.5.11 -> 1.8.0 (#26825)
* maintainers: add rvolosatovs

* pythonPackages.pylast: 0.5.11 -> 1.8.0

* pythonPackages.pylast: refactor

- Update homepage
- Add rvolosatovs to maintainers
- Fix test comment

* pylast: move out of python-packages.nix
2017-06-25 08:32:05 +01:00
Jörg Thalheim 6aad18a668 pythonPackages.uritools: keep alphabetic order 2017-06-25 08:24:50 +01:00
Jörg Thalheim 6450a14880 Merge pull request #26826 from rvolosatovs/init/uritools
pythonPackages.uritools: init at 2.0.0
2017-06-25 08:22:31 +01:00
Jörg Thalheim 5d5dde671e pythonPackages.spotipy: keep alphabetic ordering 2017-06-25 08:16:58 +01:00
Roman Volosatovs ca69972f9a
pythonPackages.spotipy: init at 2.4.4 2017-06-24 23:56:34 +02:00
Roman Volosatovs 90f85a2de5
pythonPackages.uritools: init at 2.0.0 2017-06-24 23:54:19 +02:00
Frederik Rietdijk cb0851d5fa Merge pull request #26714 from siddharthist/flask-restplus
flask-restplus: update to 0.10
2017-06-23 19:19:11 +02:00
Alexandre Peyroux be2b6c2e47 gramalecte: init at v0.5.17 2017-06-23 11:21:40 +02:00
Peter Jones aa3f37ceed pythonPackages.intelhex init at 2.1 2017-06-23 10:54:48 +02:00
Frederik Rietdijk a807c96e20 Merge pull request #26752 from rnhmjoj/graphviz
pythonPackages.pygraphviz: fix build
2017-06-23 10:40:01 +02:00
Robert Hensing 86dc6469ba arelle: init at 2017-06-01 2017-06-22 21:37:15 +02:00
rnhmjoj d8027bd9c4
pythonPackages.pygraphviz: fix build 2017-06-22 13:33:30 +02:00
aszlig 7c0f6f4be5
pyopenssl: 16.2.0 -> 17.0.0 and fix tests
Upstream changes:

 * Added OpenSSL.X509Store.set_time() to set a custom verification time
   when verifying certificate chains. pyca/pyopenssl#567
 * Added a collection of functions for working with OCSP stapling. None
   of these functions make it possible to validate OCSP assertions, only
   to staple them into the handshake and to retrieve the stapled
   assertion if provided. Users will need to write their own code to
   handle OCSP assertions. We specifically added:
   Context.set_ocsp_server_callback, Context.set_ocsp_client_callback,
   and Connection.request_ocsp. pyca/pyopenssl#580
 * Changed the SSL module's memory allocation policy to avoid zeroing
   memory it allocates when unnecessary. This reduces CPU usage and
   memory allocation time by an amount proportional to the size of the
   allocation. For applications that process a lot of TLS data or that
   use very lage allocations this can provide considerable performance
   improvements. pyca/pyopenssl#578
 * Automatically set SSL_CTX_set_ecdh_auto() on OpenSSL.SSL.Context.
   pyca/pyopenssl#575
 * Fix empty exceptions from OpenSSL.crypto.load_privatekey().
   pyca/pyopenssl#581

The full upstream changelog can be found at:

https://pyopenssl.readthedocs.io/en/17.0.0/changelog.html

I've also added a patch from pyca/pyopenssl#637 in order to fix the
tests, which was the main reason for the version bump because that patch
won't apply for 16.2.0.

According to the upstream changelog there should be no
backwards-incompatible changes, but I've tested building against some of
the packages depending on pyopenssl anyway. Regardless of this, the
build for pyopenssl fails right now anyway, so the worst that could
happen via this commit would be that we break something that's already
broken.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-06-22 01:30:10 +02:00
Shea Levy a21ddfb158 pythonPackages.bcdoc: Disable tests 2017-06-20 16:08:47 -04:00
Isaac Shapira 6fd606bdf3 awscli: 1.11.95 -> 1.11.105 2017-06-20 14:00:14 -06:00
Jörg Thalheim a9aefdeac9
pythonPackages.rebulk: 0.8.2 -> 0.9.0 2017-06-18 13:18:40 +01:00
Jörg Thalheim 76ea4df5f9
pythonPackages.keystoneauth1: fix missing argparse dep 2017-06-18 11:03:13 +01:00
Jörg Thalheim f79d21da65
oslo-config: fix argparse dependencies 2017-06-18 11:03:09 +01:00
Langston Barrett 26e1664e88 flask-restplus: update to 0.10 2017-06-16 18:55:48 +00:00
Frederik Rietdijk b127317e94 Merge pull request #26589 from georgewhewell/bump-defusedxml
pythonPackages.defusedxml: 0.4.1 -> 0.5.0
2017-06-16 09:23:42 +02:00
Franz Pletz fd0384b4c2
pythonPackages.glances: 2.9.1 -> 2.10 2017-06-16 06:17:51 +02:00
Frederik Rietdijk 2a24fdaee0 Merge pull request #26525 from jyp/boto-2.47
pythonPackages.gensim: init at 2.1.0
2017-06-15 18:57:27 +02:00
georgewhewell 79c24a04f1 pythonPackages.defusedxml: 0.4.1 -> 0.5.0 2017-06-15 11:31:53 +01:00
Lancelot SIX 3a9c7c6c18 pythonPackages.netcdf4: add missing cython dependency (#26570) 2017-06-14 17:50:48 +02:00
Josef Kemetmueller 773cc7c03d pythonPackages.hug: Disable on python2
Hug is only supported on python3.
2017-06-14 05:05:13 +02:00
Jean-Philippe Bernardy cbbdc7d3eb pythonPackages.gensim: init at 2.1.0 2017-06-13 09:35:18 +02:00
Jean-Philippe Bernardy 4b3e5c9bea pythonPackages.smart_open: init at 1.5.3 2017-06-12 18:35:40 +02:00
Jean-Philippe Bernardy 8ef32b334e pythonPackages.bz2file: init at 0.98 2017-06-12 18:35:40 +02:00
Jean-Philippe Bernardy a12ae6171b pythonPackages.boto: 2.45 -> 2.47 2017-06-12 09:57:23 +02:00
Vladimír Čunát 32916ab1de
Merge older staging
Enough rebuilds have finished on Hydra now.
2017-06-11 09:01:08 +02:00
Jörg Thalheim b9c259355b Merge pull request #26391 from ss1h2a3tw/powerline
pythonPackages.powerline: 2.5.2 -> 2.6
2017-06-10 11:09:32 +01:00
Vladimír Čunát cb9f953c92
Merge branch 'master' into staging
More larger rebuilds.
2017-06-10 10:07:33 +02:00
Frederik Rietdijk a78bf7df14 Merge pull request #26437 from vaibhavsagar/unbreak-thumbor
python.pkgs.thumbor: fix package
2017-06-09 12:55:50 +02:00
Vladimír Čunát 2993b7e096
Merge branch 'master' into staging
>10k of rebuilds from master
2017-06-08 20:56:22 +02:00
James Kent 3cb5d52dac pkgs.python.astropy: init at 1.3.3 2017-06-08 17:50:22 +02:00
Eric Sagnes 4f4ba1186e pythonPackages.Fabric: 1.10.2 -> 1.13.2 2017-06-08 13:26:37 +09:00
Vladimír Čunát ae6df000d0
Merge branch 'master' into staging 2017-06-07 18:11:27 +02:00
Michiel Leenaars 8b6f7b6f03 pythonPackages.ipaddress: 1.0.16 -> 1.0.18 2017-06-07 17:35:00 +02:00
Frederik Rietdijk e249d6e8ce python.pkgs.characteristic: 14.1.0 -> 14.3.0 2017-06-07 17:29:47 +02:00
Frederik Rietdijk 9ed3ad1eba Merge pull request #25992 from knedlsepp/provide-eccodes-python-bindings
eccodes: Provide python bindings
2017-06-07 13:07:54 +02:00
Frederik Rietdijk 90d5dd3cda Merge pull request #25990 from knedlsepp/provide-grib-api-python-bindings
grib-api: Provide python bindings
2017-06-07 13:07:36 +02:00
Vaibhav Sagar 69cfc7f265 thumbor: 5.2.1 -> 6.3.2 2017-06-07 14:30:16 +08:00
Vaibhav Sagar acf4f0ce69 libthumbor: 1.2.0 -> 1.3.2 2017-06-07 11:23:51 +08:00
ss1h2a3tw e5449af0bf pythonPackages.powerline: 2.5.2 -> 2.6 2017-06-06 21:36:33 +08:00
Frederik Rietdijk c0b1e8a5fb python.pkgs.pathpy: 10.1 -> 10.3.1 2017-06-06 11:27:04 +02:00
mingchuan b0e86e6cd8 pythonPackages.pygit2: 0.25.0 -> 0.25.1
This also fixes a failed test when builds with cffi 1.10
https://github.com/libgit2/pygit2/issues/694
2017-06-06 15:27:49 +08:00
Jörg Thalheim cf2c5f1be9
python.pkgs.scikitlearn: fix python 3.6 tests 2017-06-05 22:05:43 +01:00
Jörg Thalheim 6b89277fed
python.pkgs.systemd: 233 -> 234
also python library does not match with our systemd version, the
changes done in this release are systemd 233 and python 3.6 related.
2017-06-05 16:07:11 +01:00
Frederik Rietdijk 01e19386f7 python.pkgs.django_1_10: will be dropped before 17.09 2017-06-05 13:16:03 +02:00
Frederik Rietdijk d25c87c36d python.pkgs: do not pin django version
instead, override the package set and set `django = super.django_1_8`.
2017-06-05 13:16:02 +02:00
Frederik Rietdijk 6bcf106b65 python.pkgs.django_1_6: remove
Old version, so removing.

https://github.com/NixOS/nixpkgs/issues/25375#issuecomment-298522597
2017-06-05 13:16:02 +02:00
Frederik Rietdijk bd0811166c python.pkgs.django_1_9: remove
Old version, so removing.

https://github.com/NixOS/nixpkgs/issues/25375#issuecomment-298522597
2017-06-05 13:16:02 +02:00
Daniel Fullmer 970ad2b93a pythonPackages.systemd: 231 -> 233 2017-06-05 00:04:31 -04:00
Frederik Rietdijk 56a850701b python.pkgs.aiofiles: init at 0.3.1 2017-06-04 12:24:44 +02:00
José Luis Lafuente 5b3c1e8a78
pgcli: 1.5.1 -> 1.6.0 2017-06-03 20:32:14 +02:00
Jörg Thalheim 4c034921c3 Merge pull request #26311 from rnhmjoj/colorama
update colorama and related
2017-06-03 13:08:24 +01:00
rnhmjoj 11236d9baa
pythonPackages.libtmux: 0.6.4 -> 0.7.3 2017-06-03 13:49:35 +02:00
Jörg Thalheim cb2f0d3aab Merge pull request #26317 from Mounium/pymol
pymol: added Pmw + python version bump
2017-06-02 21:58:27 +01:00
Katona László d5fe7d1534 pythonPackages.Pmw: init at 2.0.1 2017-06-02 19:58:00 +02:00
Frederik Rietdijk c7867b8b34 python.pkgs.dask: 0.14.1 -> 0.14.3 2017-06-02 17:10:22 +02:00
Frederik Rietdijk 2957786355 python.pkgs.nbconvert: 5.1.1 -> 5.2.1 2017-06-02 17:10:22 +02:00
Frederik Rietdijk 779767e650 python.pkgs.nbformat: move expression 2017-06-02 17:10:22 +02:00
rnhmjoj ffedf3fa1c
pythonPackages.botocore: 1.5.38 -> 1.5.58 2017-06-02 11:57:53 +02:00
rnhmjoj 28cbb4ae6a
pythonPackages.colorama: move to development/python-modules 2017-06-02 11:57:45 +02:00
Frederik Rietdijk 1fe17ee116 Merge pull request #26316 from rnhmjoj/pirate-get
pirate-get: 0.2.9 -> 0.2.10
2017-06-02 09:37:07 +02:00
Frederik Rietdijk c443fcfdec Merge pull request #26161 from elasticdog/pywinrm
pythonPackages.pywinrm: 0.1.1 -> 0.2.2
2017-06-02 09:17:22 +02:00
Frederik Rietdijk 1606bd2a17 Merge pull request #26308 from rnhmjoj/uncertainties
pythonPackages.uncertainties: move to development/python-modules
2017-06-02 09:05:50 +02:00
rnhmjoj ceedd0b04a
pirate-get: 0.2.9 -> 0.2.10 2017-06-02 00:36:59 +02:00
rnhmjoj 5ae61ce156
pythonPackages.uncertainties: move to development/python-modules 2017-06-01 22:05:26 +02:00
Frederik Rietdijk 24ea567fb4 Merge pull request #26079 from mt-caret/fonttools-3.13.0
fonttools: 3.0 -> 3.13.0
2017-06-01 20:05:33 +02:00
Frederik Rietdijk 84ce0d87b8 Merge pull request #26220 from erictapen/python-future-bump
pythonPackages.future: 0.15.2 -> 0.16.0
2017-06-01 19:58:56 +02:00
Frederik Rietdijk f069498c3a python.pkgs.appdirs: 1.4.0 -> 1.4.3 2017-06-01 18:24:48 +02:00
Frederik Rietdijk 10ee7b2bda pythonPackages.wheel: move expression to separate file 2017-06-01 18:01:24 +02:00
Frederik Rietdijk 49edb1138a pythonPackages.argparse: remove because argparse is part of stdlib in 2.7 and 3.2+ 2017-06-01 18:00:57 +02:00
Jörg Thalheim bb21e5356f ropper: fix tests 2017-06-01 11:54:18 +01:00
Peter Simons be3b7c7408 osc: install completion file for fish 2017-06-01 10:21:05 +02:00
Peter Simons 6ce7049ebb osc: udpdate to latest git version 2017-06-01 10:21:04 +02:00
Jörg Thalheim 4414ac8448 Merge pull request #26289 from rnhmjoj/electrum
fix electrum dependencies (2nd try)
2017-06-01 00:22:56 +01:00
Nikolay Amiantov 120275fd6e pythonPackages.nbxmpp: 0.5.3 -> 0.5.5
Fix annoying bug with messages being resent on reconnection.
2017-06-01 02:02:00 +03:00
rnhmjoj b3c9127481
pythonPackages.mnemonic: move expression to mnemonic/default.nix 2017-06-01 00:48:32 +02:00
rnhmjoj 3463dd1c7b
pythonPackages.ed25519: move to pkgs/development/python-modules 2017-06-01 00:48:32 +02:00
rnhmjoj f93dfd5259
pythonPackages.semver: move to pkgs/development/python-modules 2017-06-01 00:48:32 +02:00
rnhmjoj e693d5f986
pythonPackages.trezor_agent: 0.7.0 -> 0.9.0 2017-06-01 00:48:31 +02:00
rnhmjoj 6217233531
pythonPackages.libagent: init at 0.9.1 2017-06-01 00:48:31 +02:00
rnhmjoj 93ff334d6d
pythonPackages.trezor: move expression to trezor/default.nix 2017-06-01 00:48:31 +02:00
rnhmjoj b236fa54aa
pythonPackages.keepkey: fix impossible constraint 2017-06-01 00:48:31 +02:00
rnhmjoj 6c0e6eeb58
pythonPackages.ledgerblue: init at 0.1.13 2017-06-01 00:48:30 +02:00
rnhmjoj 9e61a82ab3
pythonPackages.ecpy: init at 0.8.1 2017-06-01 00:15:16 +02:00
rnhmjoj 7b4acc6626
pythonPackages.hidapi: 0.7.99.post15 -> 0.7.99.post20 2017-05-31 22:12:26 +02:00
Frederik Rietdijk 8aff7c0508 Merge pull request #26258 from nh2/python-consul-0.7.0
Upgrade to python-consul-0.7.0.
2017-05-31 11:40:58 +02:00
Frederik Rietdijk 3488c65b2b Merge pull request #26268 from Profpatsch/rarfile-unrar-libarchive
pythonPackages.rarfile: use free libarchive by default.
2017-05-31 08:46:40 +02:00
Frederik Rietdijk 62dbc738c5 Revert "fix electrum dependencies" 2017-05-31 08:33:02 +02:00
Profpatsch 0697dd8b81 pythonPackages.rarfile: use free libarchive by default.
`unrar` is a non-free package, so it should only be used on request.
rarfile can use the rar-mode of `libarchive` instead, which should work well
enough for most cases.
2017-05-31 05:53:29 +02:00
Masayuki Takeda 26b69109be move fonttools to its own directory 2017-05-31 10:30:24 +09:00
Niklas Hambüchen 53748b7e17 Upgrade to python-consul-0.7.0.
Fixes https://github.com/cablehead/python-consul/issues/152
2017-05-30 22:19:57 +02:00
rnhmjoj e73f9953af
move libraries to pkgs/development/python-modules 2017-05-30 21:36:31 +02:00
rnhmjoj 3f9b6ddbf5
pythonPackages.ledgerblue: init at 0.1.13 2017-05-30 21:36:31 +02:00
rnhmjoj 0db8285689
pythonPackages.ecpy: init at 0.8.1 2017-05-30 21:36:31 +02:00
rnhmjoj b2a8b7df59
pythonPackages.keepkey: fix impossible constraint 2017-05-30 21:36:31 +02:00
rnhmjoj fe98f01da3
pythonPackages.trezor_agent: 0.7.0 -> 0.9.1 2017-05-30 21:36:31 +02:00
rnhmjoj 26fbe26345
pythonPackages.libagent: init at 0.9.1 2017-05-30 21:36:31 +02:00
rnhmjoj 91a56e1be0
pythonPackages.hidapi: 0.7.99.post15 -> 0.7.99.post20 2017-05-30 21:36:31 +02:00
Matthias Beyer 3c83ce3014 pythonPackages.pytest-localserver: 0.3.5 -> 0.3.7 (#26238)
* pythonPackages.pytest-localserver: 0.3.5 -> 0.3.7

* pythonPackages.pytest-localserver: Change to use python packaging tools

* pythonPackages.pytest-localserver: Move to own file
2017-05-30 17:47:00 +02:00
Robert Scott a1c15989aa python.pkgs.flask_migrate: 1.7.0 -> 2.0.3
fixes build against new dependencies after some test tinkering, seems
we can remove the python3-patching as there exists a "python" symlink now
2017-05-30 12:39:20 +01:00
Justin Humm e6b65c04fa pythonPackages.future: 0.15.2 -> 0.16.0
Also moved the expression from python-packages.nix to ./pkgs/development/python-modules/future/default.nix due to discussion in #26220
Used fetchPypi insted of fetchurl.
2017-05-30 13:06:56 +02:00
Lancelot SIX 61ce84904e Merge pull request #26166 from risicle/django-compat-hijack-tests
python: django-compat & django-hijack tests (also bump django-hijack)
2017-05-30 09:29:34 +02:00
Frederik Rietdijk 89a32f4586 Merge pull request #26124 from womfoo/init/cloudmonkey-5.3.3
cloudmonkey: init at 5.3.3 with related dependency argcomplete: init at 1.8.2
2017-05-30 08:43:05 +02:00
Kranium Gikos Mendoza a61e58b121 pythonPackages.argcomplete: init at 1.8.2 2017-05-30 06:37:19 +10:00
Jörg Thalheim 2c39927c7a
pythonPackages.alembic: 0.8.3 -> 0.9.2 2017-05-29 14:35:03 +01:00
Aaron Bull Schaefer c5b1a9da4b pythonPackages.pywinrm: 0.1.1 -> 0.2.2 2017-05-28 11:37:48 -07:00
Aaron Bull Schaefer 65587984e4 pythonPackages.requests_ntlm: init at 1.0.0 2017-05-28 11:37:48 -07:00
Aaron Bull Schaefer 663d369211 pythonPackages.ntlm-auth: init at 1.0.3 2017-05-28 11:37:47 -07:00
Robert Scott fa44b72d91 python.pkgs.django_hijack: 2.0.7 -> 2.1.4
also fix & enable tests, add self as maintainer
2017-05-28 14:43:41 +01:00
Frederik Rietdijk d0f2361bc1 python.pkgs.simplejson: 3.8.1 -> 3.10.0 2017-05-28 10:08:43 +02:00
Frederik Rietdijk 476086929a python.pkgs.urllib3: disable tests
because there are transient failures too often.
2017-05-27 17:52:20 +02:00
Frederik Rietdijk 2ff488c267 python.pkgs.django_hijack
Get rid of overriding inside the fixed-point combinator. Overriding
versions inside the set causes trouble when combining packages.
2017-05-27 17:22:11 +02:00
Frederik Rietdijk 4cbd5e4141 python.pkgs.sqlalchemy: 1.0.15 -> 1.1.10 2017-05-27 14:25:08 +02:00
Frederik Rietdijk dc2250eb5e python.pkgs.pip: build -> test dependencies 2017-05-27 14:25:08 +02:00
Frederik Rietdijk a8f6f8d1e4 python.pkgs.setuptools_scm: pytest is test dependency 2017-05-27 14:25:08 +02:00
Frederik Rietdijk 6cd52fa440 python.pkgs.llvmlite: 0.16.0 -> 0.18.0 2017-05-27 14:25:08 +02:00