##// END OF EJS Templates
packaging: extracted some optional debug libraries into a separate file so we don't build always those...
marcink -
r3141:b9ddffca default
parent child Browse files
Show More
@@ -0,0 +1,3 b''
1 ## special libraries we could extend the requirements.txt file with to add some
2 ## custom libraries usefull for debug and memory tracing
3 objgraph==3.1.1
@@ -525,17 +525,6 b' self: super: {'
525 525 license = [ { fullName = "GNU Lesser General Public License v3 or later (LGPLv3+)"; } { fullName = "LGPL"; } ];
526 526 };
527 527 };
528 "graphviz" = super.buildPythonPackage {
529 name = "graphviz-0.9";
530 doCheck = false;
531 src = fetchurl {
532 url = "https://files.pythonhosted.org/packages/2b/e6/71521bab8fb99833133f08f6ac0460e2f6b425a7f75ac4b02323c3c3b512/graphviz-0.9.zip";
533 sha256 = "14r9brj4r31b3qy1nnn34v3l4h0n39bqxg9sn2fz4p3pp5mglnl6";
534 };
535 meta = {
536 license = [ pkgs.lib.licenses.mit ];
537 };
538 };
539 528 "greenlet" = super.buildPythonPackage {
540 529 name = "greenlet-0.4.15";
541 530 doCheck = false;
@@ -922,20 +911,6 b' self: super: {'
922 911 license = [ pkgs.lib.licenses.bsdOriginal ];
923 912 };
924 913 };
925 "objgraph" = super.buildPythonPackage {
926 name = "objgraph-3.1.1";
927 doCheck = false;
928 propagatedBuildInputs = [
929 self."graphviz"
930 ];
931 src = fetchurl {
932 url = "https://files.pythonhosted.org/packages/be/58/9ca81a20cc837054e94866df1475d899caaa94f3732b8a46006858b015f7/objgraph-3.1.1.tar.gz";
933 sha256 = "17aq4cwainiwvj8x61j0hx45c313bkwza5fijnmmw8v8glyy2bcc";
934 };
935 meta = {
936 license = [ pkgs.lib.licenses.mit ];
937 };
938 };
939 914 "packaging" = super.buildPythonPackage {
940 915 name = "packaging-15.2";
941 916 doCheck = false;
@@ -1696,7 +1671,6 b' self: super: {'
1696 1671 self."mysql-python"
1697 1672 self."pymysql"
1698 1673 self."pyotp"
1699 self."objgraph"
1700 1674 self."packaging"
1701 1675 self."paste"
1702 1676 self."pastedeploy"
@@ -40,7 +40,6 b' msgpack-python==0.5.6'
40 40 mysql-python==1.2.5
41 41 pymysql==0.8.1
42 42 pyotp==2.2.6
43 objgraph==3.1.1
44 43 packaging==15.2
45 44 paste==2.0.3
46 45 pastedeploy==1.5.2
@@ -131,3 +130,6 b' appenlight-client==0.6.25'
131 130
132 131 ## test related requirements
133 132 -r requirements_test.txt
133
134 ## uncomment to add the debug libraries
135 #-r requirements_debug.txt
General Comments 0
You need to be logged in to leave comments. Login now