##// END OF EJS Templates
libraries: bumped ipython to 5.10, bumped ipdb to 0.10.1
marcink -
r1104:a91f6e10 default
parent child Browse files
Show More
@@ -431,6 +431,19 b''
431 license = [ pkgs.lib.licenses.psfl ];
431 license = [ pkgs.lib.licenses.psfl ];
432 };
432 };
433 };
433 };
434 backports.shutil-get-terminal-size = super.buildPythonPackage {
435 name = "backports.shutil-get-terminal-size-1.0.0";
436 buildInputs = with self; [];
437 doCheck = false;
438 propagatedBuildInputs = with self; [];
439 src = fetchurl {
440 url = "https://pypi.python.org/packages/ec/9c/368086faa9c016efce5da3e0e13ba392c9db79e3ab740b763fe28620b18b/backports.shutil_get_terminal_size-1.0.0.tar.gz";
441 md5 = "03267762480bd86b50580dc19dff3c66";
442 };
443 meta = {
444 license = [ pkgs.lib.licenses.mit ];
445 };
446 };
434 bottle = super.buildPythonPackage {
447 bottle = super.buildPythonPackage {
435 name = "bottle-0.12.8";
448 name = "bottle-0.12.8";
436 buildInputs = with self; [];
449 buildInputs = with self; [];
@@ -678,6 +691,19 b''
678 license = [ pkgs.lib.licenses.asl20 ];
691 license = [ pkgs.lib.licenses.asl20 ];
679 };
692 };
680 };
693 };
694 enum34 = super.buildPythonPackage {
695 name = "enum34-1.1.6";
696 buildInputs = with self; [];
697 doCheck = false;
698 propagatedBuildInputs = with self; [];
699 src = fetchurl {
700 url = "https://pypi.python.org/packages/bf/3e/31d502c25302814a7c2f1d3959d2a3b3f78e509002ba91aea64993936876/enum34-1.1.6.tar.gz";
701 md5 = "5f13a0841a61f7fc295c514490d120d0";
702 };
703 meta = {
704 license = [ pkgs.lib.licenses.bsdOriginal ];
705 };
706 };
681 future = super.buildPythonPackage {
707 future = super.buildPythonPackage {
682 name = "future-0.14.3";
708 name = "future-0.14.3";
683 buildInputs = with self; [];
709 buildInputs = with self; [];
@@ -796,26 +822,39 b''
796 };
822 };
797 };
823 };
798 ipdb = super.buildPythonPackage {
824 ipdb = super.buildPythonPackage {
799 name = "ipdb-0.8";
825 name = "ipdb-0.10.1";
800 buildInputs = with self; [];
826 buildInputs = with self; [];
801 doCheck = false;
827 doCheck = false;
802 propagatedBuildInputs = with self; [ipython];
828 propagatedBuildInputs = with self; [ipython setuptools];
803 src = fetchurl {
829 src = fetchurl {
804 url = "https://pypi.python.org/packages/f0/25/d7dd430ced6cd8dc242a933c8682b5dbf32eb4011d82f87e34209e5ec845/ipdb-0.8.zip";
830 url = "https://pypi.python.org/packages/eb/0a/0a37dc19572580336ad3813792c0d18c8d7117c2d66fc63c501f13a7a8f8/ipdb-0.10.1.tar.gz";
805 md5 = "96dca0712efa01aa5eaf6b22071dd3ed";
831 md5 = "4aeab65f633ddc98ebdb5eebf08dc713";
806 };
832 };
807 meta = {
833 meta = {
808 license = [ pkgs.lib.licenses.gpl1 ];
834 license = [ pkgs.lib.licenses.bsdOriginal ];
809 };
835 };
810 };
836 };
811 ipython = super.buildPythonPackage {
837 ipython = super.buildPythonPackage {
812 name = "ipython-3.1.0";
838 name = "ipython-5.1.0";
839 buildInputs = with self; [];
840 doCheck = false;
841 propagatedBuildInputs = with self; [setuptools decorator pickleshare simplegeneric traitlets prompt-toolkit Pygments pexpect backports.shutil-get-terminal-size pathlib2 pexpect];
842 src = fetchurl {
843 url = "https://pypi.python.org/packages/89/63/a9292f7cd9d0090a0f995e1167f3f17d5889dcbc9a175261719c513b9848/ipython-5.1.0.tar.gz";
844 md5 = "47c8122420f65b58784cb4b9b4af35e3";
845 };
846 meta = {
847 license = [ pkgs.lib.licenses.bsdOriginal ];
848 };
849 };
850 ipython-genutils = super.buildPythonPackage {
851 name = "ipython-genutils-0.1.0";
813 buildInputs = with self; [];
852 buildInputs = with self; [];
814 doCheck = false;
853 doCheck = false;
815 propagatedBuildInputs = with self; [];
854 propagatedBuildInputs = with self; [];
816 src = fetchurl {
855 src = fetchurl {
817 url = "https://pypi.python.org/packages/06/91/120c0835254c120af89f066afaabf81289bc2726c1fc3ca0555df6882f58/ipython-3.1.0.tar.gz";
856 url = "https://pypi.python.org/packages/71/b7/a64c71578521606edbbce15151358598f3dfb72a3431763edc2baf19e71f/ipython_genutils-0.1.0.tar.gz";
818 md5 = "a749d90c16068687b0ec45a27e72ef8f";
857 md5 = "9a8afbe0978adbcbfcb3b35b2d015a56";
819 };
858 };
820 meta = {
859 meta = {
821 license = [ pkgs.lib.licenses.bsdOriginal ];
860 license = [ pkgs.lib.licenses.bsdOriginal ];
@@ -964,6 +1003,19 b''
964 license = [ { fullName = "LGPL"; } { fullName = "GNU Library or Lesser General Public License (LGPL)"; } ];
1003 license = [ { fullName = "LGPL"; } { fullName = "GNU Library or Lesser General Public License (LGPL)"; } ];
965 };
1004 };
966 };
1005 };
1006 pathlib2 = super.buildPythonPackage {
1007 name = "pathlib2-2.1.0";
1008 buildInputs = with self; [];
1009 doCheck = false;
1010 propagatedBuildInputs = with self; [six];
1011 src = fetchurl {
1012 url = "https://pypi.python.org/packages/c9/27/8448b10d8440c08efeff0794adf7d0ed27adb98372c70c7b38f3947d4749/pathlib2-2.1.0.tar.gz";
1013 md5 = "38e4f58b4d69dfcb9edb49a54a8b28d2";
1014 };
1015 meta = {
1016 license = [ pkgs.lib.licenses.mit ];
1017 };
1018 };
967 peppercorn = super.buildPythonPackage {
1019 peppercorn = super.buildPythonPackage {
968 name = "peppercorn-0.5";
1020 name = "peppercorn-0.5";
969 buildInputs = with self; [];
1021 buildInputs = with self; [];
@@ -977,6 +1029,45 b''
977 license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
1029 license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
978 };
1030 };
979 };
1031 };
1032 pexpect = super.buildPythonPackage {
1033 name = "pexpect-4.2.1";
1034 buildInputs = with self; [];
1035 doCheck = false;
1036 propagatedBuildInputs = with self; [ptyprocess];
1037 src = fetchurl {
1038 url = "https://pypi.python.org/packages/e8/13/d0b0599099d6cd23663043a2a0bb7c61e58c6ba359b2656e6fb000ef5b98/pexpect-4.2.1.tar.gz";
1039 md5 = "3694410001a99dff83f0b500a1ca1c95";
1040 };
1041 meta = {
1042 license = [ pkgs.lib.licenses.isc { fullName = "ISC License (ISCL)"; } ];
1043 };
1044 };
1045 pickleshare = super.buildPythonPackage {
1046 name = "pickleshare-0.7.4";
1047 buildInputs = with self; [];
1048 doCheck = false;
1049 propagatedBuildInputs = with self; [pathlib2];
1050 src = fetchurl {
1051 url = "https://pypi.python.org/packages/69/fe/dd137d84daa0fd13a709e448138e310d9ea93070620c9db5454e234af525/pickleshare-0.7.4.tar.gz";
1052 md5 = "6a9e5dd8dfc023031f6b7b3f824cab12";
1053 };
1054 meta = {
1055 license = [ pkgs.lib.licenses.mit ];
1056 };
1057 };
1058 prompt-toolkit = super.buildPythonPackage {
1059 name = "prompt-toolkit-1.0.9";
1060 buildInputs = with self; [];
1061 doCheck = false;
1062 propagatedBuildInputs = with self; [six wcwidth];
1063 src = fetchurl {
1064 url = "https://pypi.python.org/packages/83/14/5ac258da6c530eca02852ee25c7a9ff3ca78287bb4c198d0d0055845d856/prompt_toolkit-1.0.9.tar.gz";
1065 md5 = "a39f91a54308fb7446b1a421c11f227c";
1066 };
1067 meta = {
1068 license = [ pkgs.lib.licenses.bsdOriginal ];
1069 };
1070 };
980 psutil = super.buildPythonPackage {
1071 psutil = super.buildPythonPackage {
981 name = "psutil-4.3.1";
1072 name = "psutil-4.3.1";
982 buildInputs = with self; [];
1073 buildInputs = with self; [];
@@ -1003,6 +1094,19 b''
1003 license = [ pkgs.lib.licenses.zpt21 { fullName = "GNU Library or Lesser General Public License (LGPL)"; } { fullName = "LGPL with exceptions or ZPL"; } ];
1094 license = [ pkgs.lib.licenses.zpt21 { fullName = "GNU Library or Lesser General Public License (LGPL)"; } { fullName = "LGPL with exceptions or ZPL"; } ];
1004 };
1095 };
1005 };
1096 };
1097 ptyprocess = super.buildPythonPackage {
1098 name = "ptyprocess-0.5.1";
1099 buildInputs = with self; [];
1100 doCheck = false;
1101 propagatedBuildInputs = with self; [];
1102 src = fetchurl {
1103 url = "https://pypi.python.org/packages/db/d7/b465161910f3d1cef593c5e002bff67e0384898f597f1a7fdc8db4c02bf6/ptyprocess-0.5.1.tar.gz";
1104 md5 = "94e537122914cc9ec9c1eadcd36e73a1";
1105 };
1106 meta = {
1107 license = [ ];
1108 };
1109 };
1006 py = super.buildPythonPackage {
1110 py = super.buildPythonPackage {
1007 name = "py-1.4.29";
1111 name = "py-1.4.29";
1008 buildInputs = with self; [];
1112 buildInputs = with self; [];
@@ -1091,7 +1195,7 b''
1091 md5 = "6360fe0f6d1f896e35b7a0142ce6459c";
1195 md5 = "6360fe0f6d1f896e35b7a0142ce6459c";
1092 };
1196 };
1093 meta = {
1197 meta = {
1094 license = [ pkgs.lib.licenses.asl20 { fullName = "Apache"; } ];
1198 license = [ pkgs.lib.licenses.asl20 ];
1095 };
1199 };
1096 };
1200 };
1097 pyparsing = super.buildPythonPackage {
1201 pyparsing = super.buildPythonPackage {
@@ -1397,7 +1501,7 b''
1397 name = "rhodecode-enterprise-ce-4.5.0";
1501 name = "rhodecode-enterprise-ce-4.5.0";
1398 buildInputs = with self; [WebTest configobj cssselect lxml mock pytest pytest-cov pytest-runner pytest-sugar];
1502 buildInputs = with self; [WebTest configobj cssselect lxml mock pytest pytest-cov pytest-runner pytest-sugar];
1399 doCheck = true;
1503 doCheck = true;
1400 propagatedBuildInputs = with self; [Babel Beaker FormEncode Mako Markdown MarkupSafe MySQL-python Paste PasteDeploy PasteScript Pygments Pylons Pyro4 Routes SQLAlchemy Tempita URLObject WebError WebHelpers WebHelpers2 WebOb WebTest Whoosh alembic amqplib anyjson appenlight-client authomatic backport-ipaddress celery channelstream colander decorator deform docutils gevent gunicorn infrae.cache ipython iso8601 kombu msgpack-python packaging psycopg2 py-gfm pycrypto pycurl pygments-markdown-lexer pyparsing pyramid pyramid-debugtoolbar pyramid-mako pyramid-beaker pysqlite python-dateutil python-ldap python-memcached python-pam recaptcha-client repoze.lru requests simplejson subprocess32 waitress zope.cachedescriptors dogpile.cache dogpile.core psutil py-bcrypt];
1504 propagatedBuildInputs = with self; [Babel Beaker FormEncode Mako Markdown MarkupSafe MySQL-python Paste PasteDeploy PasteScript Pygments pygments-markdown-lexer Pylons Pyro4 Routes SQLAlchemy Tempita URLObject WebError WebHelpers WebHelpers2 WebOb WebTest Whoosh alembic amqplib anyjson appenlight-client authomatic backport-ipaddress celery channelstream colander decorator deform docutils gevent gunicorn infrae.cache ipython iso8601 kombu msgpack-python packaging psycopg2 py-gfm pycrypto pycurl pyparsing pyramid pyramid-debugtoolbar pyramid-mako pyramid-beaker pysqlite python-dateutil python-ldap python-memcached python-pam recaptcha-client repoze.lru requests simplejson subprocess32 waitress zope.cachedescriptors dogpile.cache dogpile.core psutil py-bcrypt];
1401 src = ./.;
1505 src = ./.;
1402 meta = {
1506 meta = {
1403 license = [ { fullName = "AGPLv3, and Commercial License"; } ];
1507 license = [ { fullName = "AGPLv3, and Commercial License"; } ];
@@ -1468,6 +1572,19 b''
1468 license = [ pkgs.lib.licenses.mit ];
1572 license = [ pkgs.lib.licenses.mit ];
1469 };
1573 };
1470 };
1574 };
1575 simplegeneric = super.buildPythonPackage {
1576 name = "simplegeneric-0.8.1";
1577 buildInputs = with self; [];
1578 doCheck = false;
1579 propagatedBuildInputs = with self; [];
1580 src = fetchurl {
1581 url = "https://pypi.python.org/packages/3d/57/4d9c9e3ae9a255cd4e1106bb57e24056d3d0709fc01b2e3e345898e49d5b/simplegeneric-0.8.1.zip";
1582 md5 = "f9c1fab00fd981be588fc32759f474e3";
1583 };
1584 meta = {
1585 license = [ pkgs.lib.licenses.zpt21 ];
1586 };
1587 };
1471 simplejson = super.buildPythonPackage {
1588 simplejson = super.buildPythonPackage {
1472 name = "simplejson-3.7.2";
1589 name = "simplejson-3.7.2";
1473 buildInputs = with self; [];
1590 buildInputs = with self; [];
@@ -1520,6 +1637,19 b''
1520 license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
1637 license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
1521 };
1638 };
1522 };
1639 };
1640 traitlets = super.buildPythonPackage {
1641 name = "traitlets-4.3.1";
1642 buildInputs = with self; [];
1643 doCheck = false;
1644 propagatedBuildInputs = with self; [ipython-genutils six decorator enum34];
1645 src = fetchurl {
1646 url = "https://pypi.python.org/packages/b1/d6/5b5aa6d5c474691909b91493da1e8972e309c9f01ecfe4aeafd272eb3234/traitlets-4.3.1.tar.gz";
1647 md5 = "dd0b1b6e5d31ce446d55a4b5e5083c98";
1648 };
1649 meta = {
1650 license = [ pkgs.lib.licenses.bsdOriginal ];
1651 };
1652 };
1523 transifex-client = super.buildPythonPackage {
1653 transifex-client = super.buildPythonPackage {
1524 name = "transifex-client-0.10";
1654 name = "transifex-client-0.10";
1525 buildInputs = with self; [];
1655 buildInputs = with self; [];
@@ -1611,6 +1741,19 b''
1611 license = [ pkgs.lib.licenses.zpt21 ];
1741 license = [ pkgs.lib.licenses.zpt21 ];
1612 };
1742 };
1613 };
1743 };
1744 wcwidth = super.buildPythonPackage {
1745 name = "wcwidth-0.1.7";
1746 buildInputs = with self; [];
1747 doCheck = false;
1748 propagatedBuildInputs = with self; [];
1749 src = fetchurl {
1750 url = "https://pypi.python.org/packages/55/11/e4a2bb08bb450fdbd42cc709dd40de4ed2c472cf0ccb9e64af22279c5495/wcwidth-0.1.7.tar.gz";
1751 md5 = "b3b6a0a08f0c8a34d1de8cf44150a4ad";
1752 };
1753 meta = {
1754 license = [ pkgs.lib.licenses.mit ];
1755 };
1756 };
1614 ws4py = super.buildPythonPackage {
1757 ws4py = super.buildPythonPackage {
1615 name = "ws4py-0.3.5";
1758 name = "ws4py-0.3.5";
1616 buildInputs = with self; [];
1759 buildInputs = with self; [];
@@ -78,8 +78,8 b' gunicorn==19.6.0'
78 gnureadline==6.3.3
78 gnureadline==6.3.3
79 infrae.cache==1.0.1
79 infrae.cache==1.0.1
80 invoke==0.13.0
80 invoke==0.13.0
81 ipdb==0.8
81 ipdb==0.10.1
82 ipython==3.1.0
82 ipython==5.1.0
83 iso8601==0.1.11
83 iso8601==0.1.11
84 itsdangerous==0.24
84 itsdangerous==0.24
85 kombu==1.5.1
85 kombu==1.5.1
@@ -51,6 +51,7 b' requirements = ['
51 'PasteDeploy',
51 'PasteDeploy',
52 'PasteScript',
52 'PasteScript',
53 'Pygments',
53 'Pygments',
54 'pygments-markdown-lexer',
54 'Pylons',
55 'Pylons',
55 'Pyro4',
56 'Pyro4',
56 'Routes',
57 'Routes',
General Comments 0
You need to be logged in to leave comments. Login now