-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathuv.lock
More file actions
1017 lines (940 loc) · 77.4 KB
/
Copy pathuv.lock
File metadata and controls
1017 lines (940 loc) · 77.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
version = 1
revision = 3
requires-python = "==3.13.*"
[[package]]
name = "addict"
version = "2.4.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/addict/2.4.0/addict-2.4.0.tar.gz", hash = "sha256:b3b2210e0e067a281f5646c8c5db92e99b7231ea8b0eb5f74dbdf9e259d4e494"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/addict/2.4.0/addict-2.4.0-py3-none-any.whl", hash = "sha256:249bb56bbfd3cdc2a004ea0ff4c2b6ddc84d53bc2194761636eb314d5cfa5dfc"}
]
[[package]]
name = "asttokens"
version = "3.0.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/asttokens/3.0.1/asttokens-3.0.1.tar.gz", hash = "sha256:71a4ee5de0bde6a31d64f6b13f2293ac190344478f081c3d1bccfcf5eacb0cb7"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/asttokens/3.0.1/asttokens-3.0.1-py3-none-any.whl", hash = "sha256:15a3ebc0f43c2d0a50eeafea25e19046c68398e487b9f1f5b517f7c0f40f976a"}
]
[[package]]
name = "attrs"
version = "26.1.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/attrs/26.1.0/attrs-26.1.0.tar.gz", hash = "sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/attrs/26.1.0/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309"}
]
[[package]]
name = "backports-strenum"
version = "1.2.8"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/backports-strenum/1.2.8/backports_strenum-1.2.8.tar.gz", hash = "sha256:4dd47365fd427ac8028aeb1ad3628ea38e67c4d0336ceebd5c0f113e0c487ce9"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/backports-strenum/1.2.8/backports_strenum-1.2.8-py3-none-any.whl", hash = "sha256:fc297cb26971f7d5e15a478a06a78575197f81daea47975771b1aae996dcccf4"}
]
[[package]]
name = "cachebox"
version = "5.2.3"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3.tar.gz", hash = "sha256:b1f68246685aa739bbbd2734befb1465363a1e1042407c154feadb065f17a099"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:9527c5c70f8735f2d696331d8bcf77254f03b4dc8542046807823bd36ed4e8ba"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:40ac878af00d5969862c1f6bc076de1e34ca248662fce6aecca1761f52e33e32"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5ff26bfd8f7e95b3becf6d5f65c25edaca50fa68078868648b70d79bcccc260"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:82e7002dd343afeeba2fcf0e483131b342a27ec3bc34b2214dc617691bda40d6"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ccbdc54a6c4b5758408c1083bdfa217bd382894a8331c7d0a54b84ba0cf51e5b"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df5135a168f143d186b1cc3be0ca16b66446897ab5cedc03bd80bcc926fcd403"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10bedf96db8f9766cc956f9adcc623e604264e5d6fa2e255432f8c2ed7519143"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f22732d0d69bb84ad2dca7480bffdfd0430c647152d488936e152ecbbfee52fb"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:26ae0b68979204d360327f4c0725cfdc95cfc34ab73ab1a8f528e3bd2f6d023c"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:f3d628b816e28a6e7661d460e02dd5b421247cc2cd275814f80ea79621245fc4"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:64057caa6b741320655cd3c5997fe642dae5dbff571eb530e6f53e58272bb43b"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa325306084aa2dc0b21e07723d7700f4d43dece3732c7fdaf7a269dc5e35aa7"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313-win32.whl", hash = "sha256:55003089d21c2f5515089c307be063b45558e884a4a1cc9593944374c89975c4"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313-win_amd64.whl", hash = "sha256:dcc5edb6ecf2b516e90b773d232360c5e4ed8fdcda038b19441da2ed9cf208ab"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:a4b7559fa4994c4032dd07466c2041d57e055feb814762e1f73f4e8beef188d0"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f57afada3d9327adf87f3b5cf0094348c6fd49354ab2e9bd20b044648eb094ae"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8342ff350ce86f062492752d612e9f056ac5dc56375713d75c3bf6e83b4d18db"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:405f9cc8492fc9d953b5a6b9e2b661e99583755c6639ab8d09a287fdf336503c"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:94aae393ec1d9b26565d346445bb6afa3963d2a0d3eb5e4188d0e510fab871a0"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8b0b575066fc09f6fae0d4bd30d6ff56584a6870cbe7d202916c5e0d725cfd4"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41e99c1240106d39b63ce7868a6cd8c9da9243fef08848b85d428164e0769fd2"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:432ca62b99f7eafc21af669d76c88c1b7377db179b89fb6fca3ea93b8f9fff19"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e51d9c59006b53447f806145406eb37a7fc3c25553d4fd24c3887f3b268d214e"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:5e48a405f699fb001b8af120a6e0b4a981277f84eb5dd66a1faa21e4b6fe9485"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:8cbfc007ea78af61d75d7d26e5854df53dc5da6877d074afd4b4696c074f4ee7"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6a94d0da8133b3a0707ae11c9ea321f8fc37e3b5a14517019a05d632218b0f56"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313t-win32.whl", hash = "sha256:5fee33549877c03c2494ec5359a57a7667f872fe8e296a7f39d3dfe08dd3914c"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/cachebox/5.2.3/cachebox-5.2.3-cp313-cp313t-win_amd64.whl", hash = "sha256:67548a05cd41fcc4f7af80a2f97f742fef3d436537ac2e1a1dce0fcba5d41190"}
]
[[package]]
name = "certifi"
version = "2026.5.20"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/certifi/2026.5.20/certifi-2026.5.20.tar.gz", hash = "sha256:69dea482ab64caa7b9f6aba1c6bf48bb6a5448d1c0f1b17ab42ad8c763a5344d"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/certifi/2026.5.20/certifi-2026.5.20-py3-none-any.whl", hash = "sha256:3c52e209ba0a4ad7aebe60436a4ab349c39e1e602e8c134221e546902ad25897"}
]
[[package]]
name = "charset-normalizer"
version = "3.4.7"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7.tar.gz", hash = "sha256:ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:f496c9c3cc02230093d8330875c4c3cdfc3b73612a5fd921c65d39cbcef08063"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0ea948db76d31190bf08bd371623927ee1339d5f2a0b4b1b4a4439a65298703c"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a277ab8928b9f299723bc1a2dabb1265911b1a76341f90a510368ca44ad9ab66"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3bec022aec2c514d9cf199522a802bd007cd588ab17ab2525f20f9c34d067c18"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e044c39e41b92c845bc815e5ae4230804e8e7bc29e399b0437d64222d92809dd"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:f495a1652cf3fbab2eb0639776dad966c2fb874d79d87ca07f9d5f059b8bd215"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e712b419df8ba5e42b226c510472b37bd57b38e897d3eca5e8cfd410a29fa859"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7804338df6fcc08105c7745f1502ba68d900f45fd770d5bdd5288ddccb8a42d8"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:481551899c856c704d58119b5025793fa6730adda3571971af568f66d2424bb5"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f59099f9b66f0d7145115e6f80dd8b1d847176df89b234a5a6b3f00437aa0832"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:f59ad4c0e8f6bba240a9bb85504faa1ab438237199d4cce5f622761507b8f6a6"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:3dedcc22d73ec993f42055eff4fcfed9318d1eeb9a6606c55892a26964964e48"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:64f02c6841d7d83f832cd97ccf8eb8a906d06eb95d5276069175c696b024b60a"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-win32.whl", hash = "sha256:4042d5c8f957e15221d423ba781e85d553722fc4113f523f2feb7b188cc34c5e"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:3946fa46a0cf3e4c8cb1cc52f56bb536310d34f25f01ca9b6c16afa767dab110"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:80d04837f55fc81da168b98de4f4b797ef007fc8a79ab71c6ec9bc4dd662b15b"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/charset-normalizer/3.4.7/charset_normalizer-3.4.7-py3-none-any.whl", hash = "sha256:3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d"}
]
[[package]]
name = "colorama"
version = "0.4.6"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/colorama/0.4.6/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/colorama/0.4.6/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}
]
[[package]]
name = "coverage"
version = "7.14.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1.tar.gz", hash = "sha256:30c08f7d90415aa98b3c990385dea2939b0da55f38515e5b369b83655f8523be"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:be9f2c802dcfce3f71298303aa5dad0dce440a76c52f2f60dacd8656dab78793"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6223a72fd0e4c7156353ec0f08a5f93623e1d3034d0e2683b9bb8ea674131b1d"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:7279d2110a28cebc738b6459ecda2771735a4c18465fbbd36b3288fe5ed92247"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:9eeb3fcbc13ba40dfbdb22d01d196a28e9cef9ed4c29b60061a1e0e823a9929d"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f0cfc27c539f07cf5c0a4cfe211d0b6cae039f8f40526dbaa71944e64b50a7b"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:221c70f316241a78e77e607c227cefc8808d4e08f28d99c04f35694690e940be"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:da028256b04ec30e5e0114b6f76172938c313991f0a2d3d894271315cf5d5e43"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:76a085d7005236a767e3426148b2c407e53ad61695c562f8a81da2d373324901"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b553d04b5e778a8e56d57eb134aff42a92718ecba45e79c4764ecfa40efd92ff"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:46f714d2fb8ae2f4f29f23ada7f1e79b759fff5a70f94a1dac23af204c3ec9e4"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:1896f5e19ff3f0431c7ce2172adc54890fd97f86b59ced8ca1649145d9ffe35d"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:62fd185ef9df3c33d1c8178c5af105f762afbad96038de9a4ae100aa6297ca33"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-win32.whl", hash = "sha256:ab4af6352741a604c431c6072fce5bee33bf0f20dc7a56618d6bf6bb89e9810c"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-win_amd64.whl", hash = "sha256:7af486dabe8954d03b087f0021540897afe084f04e16ff5579e08cc46f871416"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313-win_arm64.whl", hash = "sha256:2224f89ffd0c5605ccce1ed7a584da162bc7c55f601ab1c946bc9de31a486b42"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:de286598cc65d2b489411174b1faec2f5a7775fb3201fd925db2a76b4030f37d"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:042c46ded7c288aeb07cf14a28b6c1e10b78fcba40171c3fa1e939377eeef0b5"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:f4ddbe407477f04c45115d1a4e5bc480f753553b534d338d4c3358b1cdd0ea52"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:d13e6725992e2d2fd7d81d4f5241952d13740121dfd501da09201be39b2c003a"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f747dc8edcfe740130f28f32f3995e955494285717e86ee25af51db2219df08a"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ced2f09ef276fd58611a1ef502164ad266d2b75174e5a40cabbdb4033f9f6cf2"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b84800013769a78ccb9ef4659402e26d06867e337b61ec365f77ad008adea80e"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ea8cd6ca0ee9f616aaef3afc6882e32c2cbf18b00d96313ffd76af650574034d"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:aa5e304a873fabddc11e484e9b6b738bd38bd7bed17b09aa84eecf5332e8b8bb"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:5a1c5215be81035e629d5bc756650634d0bf31991038db7a0eccb90f025ce16d"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:79058c47dae6788504b5effb319961bcd72d7240551464b91d474bc0ed186d69"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:370c5afae3fa0658e11694a32b24c2778f6bc2d17718121f94ee185e69f26b54"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-win32.whl", hash = "sha256:3758dd0a7f1fa57365ef2e781df0f0731d38b6e3772259d13dae4bd8a958d4b1"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-win_amd64.whl", hash = "sha256:6ff665fb023a77386fe11685190cee1f60a7d635994a30d9b0a061533d470fce"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-cp313-cp313t-win_arm64.whl", hash = "sha256:17a5a241e5997621a956a7f402a7433ef4221e5152809b785bec79e2323799f1"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/coverage/7.14.1/coverage-7.14.1-py3-none-any.whl", hash = "sha256:a252f21c27e38347e60111a3266b03827422a7d5525951aceee313aa68bab1d2"}
]
[[package]]
name = "datadog"
version = "0.52.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "requests"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/datadog/0.52.1/datadog-0.52.1.tar.gz", hash = "sha256:44c6deb563c4522dba206fba2e2bb93d3b04113c40191851ba3a241d82b5fd0b"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/datadog/0.52.1/datadog-0.52.1-py2.py3-none-any.whl", hash = "sha256:b8c92cd761618ee062f114171067e4c400d48c9f0dad16cb285042439d9d5d4e"}
]
[[package]]
name = "decorator"
version = "5.3.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/decorator/5.3.1/decorator-5.3.1.tar.gz", hash = "sha256:4cbcdd55a6efadb9dbea26b858f4fb3264567b52d69ca0d25b721b553f60ea82"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/decorator/5.3.1/decorator-5.3.1-py3-none-any.whl", hash = "sha256:f47fe6fdbd2edd623ecfe36875d37aba411624e2670dd395dddae1358689bb3c"}
]
[[package]]
name = "deepdiff"
version = "9.1.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "cachebox"},
{name = "orderly-set"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/deepdiff/9.1.0/deepdiff-9.1.0.tar.gz", hash = "sha256:07e9e366fab4297755153c4eab795ad4ef3cbd0d51660e847f5751c6bd727687"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/deepdiff/9.1.0/deepdiff-9.1.0-py3-none-any.whl", hash = "sha256:80c0460e1993b04f6f0ca79abf25548b129fd218478c4ebb08f80560f5d10610"}
]
[[package]]
name = "deprecated"
version = "1.3.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "wrapt"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/deprecated/1.3.1/deprecated-1.3.1.tar.gz", hash = "sha256:b1b50e0ff0c1fddaa5708a2c6b0a6588bb09b892825ab2b214ac9ea9d92a5223"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/deprecated/1.3.1/deprecated-1.3.1-py2.py3-none-any.whl", hash = "sha256:597bfef186b6f60181535a29fbe44865ce137a5079f295b479886c82729d5f3f"}
]
[[package]]
name = "dictdiffer"
version = "0.9.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/dictdiffer/0.9.0/dictdiffer-0.9.0.tar.gz", hash = "sha256:17bacf5fbfe613ccf1b6d512bd766e6b21fb798822a133aa86098b8ac9997578"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/dictdiffer/0.9.0/dictdiffer-0.9.0-py2.py3-none-any.whl", hash = "sha256:442bfc693cfcadaf46674575d2eba1c53b42f5e404218ca2c2ff549f2df56595"}
]
[[package]]
name = "docker"
version = "7.1.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "pywin32", marker = "sys_platform == 'win32'"},
{name = "requests"},
{name = "urllib3"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/docker/7.1.0/docker-7.1.0.tar.gz", hash = "sha256:ad8c70e6e3f8926cb8a92619b832b4ea5299e2831c14284663184e200546fa6c"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/docker/7.1.0/docker-7.1.0-py3-none-any.whl", hash = "sha256:c96b93b7f0a746f9e77d325bcfb87422a3d8bd4f03136ae8a85b37f1898d5fc0"}
]
[[package]]
name = "elasticsearch"
version = "7.17.13"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "certifi"},
{name = "urllib3"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/elasticsearch/7.17.13/elasticsearch-7.17.13.tar.gz", hash = "sha256:ba1b87322045fc37831009c7c49ef0e2777165a2ad3390df4d9e2b7a09d90c86"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/elasticsearch/7.17.13/elasticsearch-7.17.13-py2.py3-none-any.whl", hash = "sha256:dac73df9a9070b9c96be45d99f4316badc525f8b17f418e9c86da2bb5855c892"}
]
[[package]]
name = "esbuild"
source = {editable = "."}
dependencies = [
{name = "addict"},
{name = "datadog"},
{name = "deepdiff"},
{name = "dictdiffer"},
{name = "elasticsearch"},
{name = "gdc-ng-models"},
{name = "gdcdatamodel2"},
{name = "gdcdictionary"},
{name = "gdcmodels"},
{name = "indexclient"},
{name = "more-itertools"},
{name = "networkx"},
{name = "psqlgraph"},
{name = "python-dotenv"},
{name = "python-json-logger"},
{name = "queueclient"},
{name = "requests"},
{name = "sqlalchemy"}
]
[package.metadata]
requires-dist = [
{name = "addict"},
{name = "datadog"},
{name = "deepdiff"},
{name = "dictdiffer"},
{name = "elasticsearch"},
{name = "gdc-ng-models"},
{name = "gdcdatamodel2", specifier = ">=4.0.3"},
{name = "gdcdatamodel2", extras = ["visualization"], marker = "extra == 'dev'"},
{name = "gdcdictionary", specifier = ">=4.0.3"},
{name = "gdcmodels", specifier = ">=6.1.2"},
{name = "indexclient"},
{name = "jmespath", marker = "extra == 'dev'"},
{name = "mock", marker = "extra == 'dev'"},
{name = "more-itertools"},
{name = "networkx"},
{name = "psqlgraph"},
{name = "pytest", marker = "extra == 'dev'"},
{name = "pytest-cov", marker = "extra == 'dev'"},
{name = "python-dotenv"},
{name = "python-json-logger"},
{name = "queueclient"},
{name = "requests"},
{name = "sqlalchemy"},
{name = "testcontainers", marker = "extra == 'dev'"}
]
provides-extras = ["dev"]
[package.optional-dependencies]
dev = [
{name = "gdcdatamodel2", extra = ["visualization"]},
{name = "jmespath"},
{name = "mock"},
{name = "pytest"},
{name = "pytest-cov"},
{name = "testcontainers"}
]
[[package]]
name = "executing"
version = "2.2.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/executing/2.2.1/executing-2.2.1.tar.gz", hash = "sha256:3632cc370565f6648cc328b32435bd120a1e4ebb20c77e3fdde9a13cd1e533c4"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/executing/2.2.1/executing-2.2.1-py2.py3-none-any.whl", hash = "sha256:760643d3452b4d777d295bb167ccc74c64a81df23fb5e08eff250c425a4b2017"}
]
[[package]]
name = "gdc-ng-models"
version = "3.2.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "psycopg2"},
{name = "pytz"},
{name = "sqlalchemy"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/gdc-ng-models/3.2.0/gdc_ng_models-3.2.0.tar.gz", hash = "sha256:1e1b2756306c0fbc2d46c30accf08db57c07fece1b8b4c36cc10089ec7331cb9"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/gdc-ng-models/3.2.0/gdc_ng_models-3.2.0-py3-none-any.whl", hash = "sha256:55f6563d41188cb1ac1e7b3911136c3bcfef919ac157c9205fa2a72ecbba1777"}
]
[[package]]
name = "gdcdatamodel2"
version = "4.0.3"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "psqlgraph"},
{name = "pyyaml"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/gdcdatamodel2/4.0.3/gdcdatamodel2-4.0.3.tar.gz", hash = "sha256:d33e9aa800f40b43fb825ef914b6632eee841086dae25b03f96fff52249a4710"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/gdcdatamodel2/4.0.3/gdcdatamodel2-4.0.3-py3-none-any.whl", hash = "sha256:4c84cdee598d14265fca77c06440c4fccc12767343367fba00f42cdea523afc2"}
]
[package.optional-dependencies]
visualization = [
{name = "graphviz"},
{name = "ipython"}
]
[[package]]
name = "gdcdictionary"
version = "4.0.3"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "jsonschema"},
{name = "pyyaml"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/gdcdictionary/4.0.3/gdcdictionary-4.0.3.tar.gz", hash = "sha256:6c5f5b07d3d9ff31ffba87c2212464747cbdb98290d4ee875ea1dd041ab0ed57"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/gdcdictionary/4.0.3/gdcdictionary-4.0.3-py3-none-any.whl", hash = "sha256:6bacd47f81ba4d9efe5db74365ae3119f9c5999f4dc795da66926ba73012e31f"}
]
[[package]]
name = "gdcmodels"
version = "6.1.2"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "backports-strenum"},
{name = "deepdiff"},
{name = "elasticsearch"},
{name = "mergedeep"},
{name = "more-itertools"},
{name = "pyyaml"},
{name = "typing-extensions"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/gdcmodels/6.1.2/gdcmodels-6.1.2.tar.gz", hash = "sha256:12ceb86c5c373e507d312220c5757efda94dd2d4dc9fb010312aef1d7496883e"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/gdcmodels/6.1.2/gdcmodels-6.1.2-py3-none-any.whl", hash = "sha256:6e447292064ac78c7187eb636eca9cf92a99ba114f4e112957b886a1763fb49a"}
]
[[package]]
name = "graphviz"
version = "0.21"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/graphviz/0.21/graphviz-0.21.tar.gz", hash = "sha256:20743e7183be82aaaa8ad6c93f8893c923bd6658a04c32ee115edb3c8a835f78"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/graphviz/0.21/graphviz-0.21-py3-none-any.whl", hash = "sha256:54f33de9f4f911d7e84e4191749cac8cc5653f815b06738c54db9a15ab8b1e42"}
]
[[package]]
name = "greenlet"
version = "3.5.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/greenlet/3.5.1/greenlet-3.5.1.tar.gz", hash = "sha256:5a56aeb7d5d9cc4b3a735efb5095bd4b4f6f0e4f93e5ca876d0e2315137b7829"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/greenlet/3.5.1/greenlet-3.5.1-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:51518ff74664078fc51bffcc6fc529b0df5ae58da192691cee765d45ce944a2b"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/greenlet/3.5.1/greenlet-3.5.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ffdb3c0bb002c99cd8f298957e046c3dbf6006b5b7cdf11a4e19194624a0a0a"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/greenlet/3.5.1/greenlet-3.5.1-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7715a5a2c3378ba602c3a440558261e13a820bb53a82693aacd7b7f6d964e283"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/greenlet/3.5.1/greenlet-3.5.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dc71ff466927a201b08305acac451ebe1aedfcea002f62f1f2f2ac2ac1e6a135"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/greenlet/3.5.1/greenlet-3.5.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cd443683db272ebaaca03af98c0b063ab30db70ea8a31a1559f35e3f7b744ccd"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/greenlet/3.5.1/greenlet-3.5.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:089fff7a6ce8d9316d1f65ebc00273a56be258c1725b32b94de90a3a979557e1"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/greenlet/3.5.1/greenlet-3.5.1-cp313-cp313-win_amd64.whl", hash = "sha256:110a1ca7b49b014b097f6078272c3f4ed31af45b254de5228b79adba879f6af9"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/greenlet/3.5.1/greenlet-3.5.1-cp313-cp313-win_arm64.whl", hash = "sha256:f16ba1efc0715b680a18b8123d90dad887c6112ae3555b4b5c32c149540c6b4e"}
]
[[package]]
name = "idna"
version = "3.18"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/idna/3.18/idna-3.18.tar.gz", hash = "sha256:ffb385a7e039654cef1ab9ef32c6fafe283c0c0467bba1d9029738ce4a14a848"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/idna/3.18/idna-3.18-py3-none-any.whl", hash = "sha256:7f952cbe720b688055e3f87de14f5c3e5fdaa8bc3928985c4077ca689de849a2"}
]
[[package]]
name = "indexclient"
version = "6.1.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/indexclient/6.1.1/indexclient-6.1.1.tar.gz", hash = "sha256:53514076d8d77e3f9283e52bc93f8fbe3f8a3038ddfb8c0a1a8681509568d082"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/indexclient/6.1.1/indexclient-6.1.1-py3-none-any.whl", hash = "sha256:c5019ce1190f03fbd58d009bc414efa5823c209adebd260a290955a5632b78ac"}
]
[[package]]
name = "iniconfig"
version = "2.3.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/iniconfig/2.3.0/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/iniconfig/2.3.0/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12"}
]
[[package]]
name = "ipython"
version = "9.14.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "colorama", marker = "sys_platform == 'win32'"},
{name = "decorator"},
{name = "ipython-pygments-lexers"},
{name = "jedi"},
{name = "matplotlib-inline"},
{name = "pexpect", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'"},
{name = "prompt-toolkit"},
{name = "psutil", marker = "sys_platform != 'emscripten'"},
{name = "pygments"},
{name = "stack-data"},
{name = "traitlets"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/ipython/9.14.0/ipython-9.14.0.tar.gz", hash = "sha256:6f27ff0f1d9ea050e0551f71568bc4b34d8aba579e8f111c5b4175f44ac6b4aa"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/ipython/9.14.0/ipython-9.14.0-py3-none-any.whl", hash = "sha256:8fd984a3372c14b12790b084ba6b5cff5678c0cb063244a0034f06a51f20d6c2"}
]
[[package]]
name = "ipython-pygments-lexers"
version = "1.1.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "pygments"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/ipython-pygments-lexers/1.1.1/ipython_pygments_lexers-1.1.1.tar.gz", hash = "sha256:09c0138009e56b6854f9535736f4171d855c8c08a563a0dcd8022f78355c7e81"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/ipython-pygments-lexers/1.1.1/ipython_pygments_lexers-1.1.1-py3-none-any.whl", hash = "sha256:a9462224a505ade19a605f71f8fa63c2048833ce50abc86768a0d81d876dc81c"}
]
[[package]]
name = "jedi"
version = "0.20.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "parso"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/jedi/0.20.0/jedi-0.20.0.tar.gz", hash = "sha256:c3f4ccbd276696f4b19c54618d4fb18f9fc24b0aef02acf704b23f487daa1011"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/jedi/0.20.0/jedi-0.20.0-py2.py3-none-any.whl", hash = "sha256:7bdd9c2634f56713299976f4cbd59cb3fa92165cc5e05ea811fb253480728b67"}
]
[[package]]
name = "jmespath"
version = "1.1.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/jmespath/1.1.0/jmespath-1.1.0.tar.gz", hash = "sha256:472c87d80f36026ae83c6ddd0f1d05d4e510134ed462851fd5f754c8c3cbb88d"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/jmespath/1.1.0/jmespath-1.1.0-py3-none-any.whl", hash = "sha256:a5663118de4908c91729bea0acadca56526eb2698e83de10cd116ae0f4e97c64"}
]
[[package]]
name = "jsonschema"
version = "4.26.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "attrs"},
{name = "jsonschema-specifications"},
{name = "referencing"},
{name = "rpds-py"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/jsonschema/4.26.0/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/jsonschema/4.26.0/jsonschema-4.26.0-py3-none-any.whl", hash = "sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce"}
]
[[package]]
name = "jsonschema-specifications"
version = "2025.9.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "referencing"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/jsonschema-specifications/2025.9.1/jsonschema_specifications-2025.9.1.tar.gz", hash = "sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/jsonschema-specifications/2025.9.1/jsonschema_specifications-2025.9.1-py3-none-any.whl", hash = "sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe"}
]
[[package]]
name = "matplotlib-inline"
version = "0.2.2"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "traitlets"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/matplotlib-inline/0.2.2/matplotlib_inline-0.2.2.tar.gz", hash = "sha256:72f3fe8fce36b70d4a5b612f899090cd0401deddc4ea90e1572b9f4bfb058c79"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/matplotlib-inline/0.2.2/matplotlib_inline-0.2.2-py3-none-any.whl", hash = "sha256:3c821cf1c209f59fb2d2d64abbf5b23b67bcb2210d663f9918dd851c6da1fcf6"}
]
[[package]]
name = "mergedeep"
version = "1.3.4"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/mergedeep/1.3.4/mergedeep-1.3.4.tar.gz", hash = "sha256:0096d52e9dad9939c3d975a774666af186eda617e6ca84df4c94dec30004f2a8"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/mergedeep/1.3.4/mergedeep-1.3.4-py3-none-any.whl", hash = "sha256:70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307"}
]
[[package]]
name = "mock"
version = "5.2.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/mock/5.2.0/mock-5.2.0.tar.gz", hash = "sha256:4e460e818629b4b173f32d08bf30d3af8123afbb8e04bb5707a1fd4799e503f0"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/mock/5.2.0/mock-5.2.0-py3-none-any.whl", hash = "sha256:7ba87f72ca0e915175596069dbbcc7c75af7b5e9b9bc107ad6349ede0819982f"}
]
[[package]]
name = "more-itertools"
version = "11.1.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/more-itertools/11.1.0/more_itertools-11.1.0.tar.gz", hash = "sha256:48e8f4d9e7e5878571ecf6f2b4e57634f93cd474cc8cfbd2376f2d11b396e30d"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/more-itertools/11.1.0/more_itertools-11.1.0-py3-none-any.whl", hash = "sha256:4b65538ae22f6fed0ce4874efd317463a7489796a0939fa66824dd542125a192"}
]
[[package]]
name = "networkx"
version = "3.6.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/networkx/3.6.1/networkx-3.6.1.tar.gz", hash = "sha256:26b7c357accc0c8cde558ad486283728b65b6a95d85ee1cd66bafab4c8168509"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/networkx/3.6.1/networkx-3.6.1-py3-none-any.whl", hash = "sha256:d47fbf302e7d9cbbb9e2555a0d267983d2aa476bac30e90dfbe5669bd57f3762"}
]
[[package]]
name = "orderly-set"
version = "5.5.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/orderly-set/5.5.0/orderly_set-5.5.0.tar.gz", hash = "sha256:e87185c8e4d8afa64e7f8160ee2c542a475b738bc891dc3f58102e654125e6ce"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/orderly-set/5.5.0/orderly_set-5.5.0-py3-none-any.whl", hash = "sha256:46f0b801948e98f427b412fcabb831677194c05c3b699b80de260374baa0b1e7"}
]
[[package]]
name = "packaging"
version = "26.2"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/packaging/26.2/packaging-26.2.tar.gz", hash = "sha256:ff452ff5a3e828ce110190feff1178bb1f2ea2281fa2075aadb987c2fb221661"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/packaging/26.2/packaging-26.2-py3-none-any.whl", hash = "sha256:5fc45236b9446107ff2415ce77c807cee2862cb6fac22b8a73826d0693b0980e"}
]
[[package]]
name = "parso"
version = "0.8.7"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/parso/0.8.7/parso-0.8.7.tar.gz", hash = "sha256:eaaac4c9fdd5e9e8852dc778d2d7405897ec510f2a298071453e5e3a07914bb1"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/parso/0.8.7/parso-0.8.7-py2.py3-none-any.whl", hash = "sha256:a8926eb2a1b915486941fdbd31e86a4baf88fe8c210f25f2f35ecec5b574ca1c"}
]
[[package]]
name = "pexpect"
version = "4.9.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "ptyprocess"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/pexpect/4.9.0/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pexpect/4.9.0/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523"}
]
[[package]]
name = "pika"
version = "1.4.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/pika/1.4.1/pika-1.4.1.tar.gz", hash = "sha256:e851f3e4992adfbf8eb64e9b86d94e3382f92ba0200055abedbb29676b8e713b"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pika/1.4.1/pika-1.4.1-py3-none-any.whl", hash = "sha256:2daae7bd422a0fc4f4879fd48c9a1932ed74a0bc7172e1e5f9bde63a101ed074"}
]
[[package]]
name = "pluggy"
version = "1.6.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/pluggy/1.6.0/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pluggy/1.6.0/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746"}
]
[[package]]
name = "prompt-toolkit"
version = "3.0.52"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "wcwidth"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/prompt-toolkit/3.0.52/prompt_toolkit-3.0.52.tar.gz", hash = "sha256:28cde192929c8e7321de85de1ddbe736f1375148b02f2e17edd840042b1be855"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/prompt-toolkit/3.0.52/prompt_toolkit-3.0.52-py3-none-any.whl", hash = "sha256:9aac639a3bbd33284347de5ad8d68ecc044b91a762dc39b7c21095fcd6a19955"}
]
[[package]]
name = "psqlgraph"
version = "7.0.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "more-itertools"},
{name = "psycopg2"},
{name = "rstr"},
{name = "sqlalchemy"},
{name = "typing-extensions"},
{name = "xlocal"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/psqlgraph/7.0.0/psqlgraph-7.0.0.tar.gz", hash = "sha256:bd962c35a32c2f528dfd82c7ccba2a4772fc63fe6b58d3c8cb3df555c542b03d"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psqlgraph/7.0.0/psqlgraph-7.0.0-py3-none-any.whl", hash = "sha256:afe6e7c5e5afb7fd97d88f06ec0e5ff0415028d0386083d633cb68e4dc46be27"}
]
[[package]]
name = "psutil"
version = "7.2.2"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2.tar.gz", hash = "sha256:0746f5f8d406af344fd547f1c8daa5f5c33dbc293bb8d6a16d80b4bb88f59372"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2edccc433cbfa046b980b0df0171cd25bcaeb3a68fe9022db0979e7aa74a826b"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e78c8603dcd9a04c7364f1a3e670cea95d51ee865e4efb3556a3a63adef958ea"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2-cp313-cp313t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1a571f2330c966c62aeda00dd24620425d4b0cc86881c89861fbc04549e5dc63"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:917e891983ca3c1887b4ef36447b1e0873e70c933afc831c6b6da078ba474312"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2-cp313-cp313t-win_amd64.whl", hash = "sha256:ab486563df44c17f5173621c7b198955bd6b613fb87c71c161f827d3fb149a9b"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2-cp313-cp313t-win_arm64.whl", hash = "sha256:ae0aefdd8796a7737eccea863f80f81e468a1e4cf14d926bd9b6f5f2d5f90ca9"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ed0cace939114f62738d808fdcecd4c869222507e266e574799e9c0faa17d486"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:1a7b04c10f32cc88ab39cbf606e117fd74721c831c98a27dc04578deb0c16979"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:076a2d2f923fd4821644f5ba89f059523da90dc9014e85f8e45a5774ca5bc6f9"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2-cp36-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b0726cecd84f9474419d67252add4ac0cd9811b04d61123054b9fb6f57df6e9e"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2-cp36-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fd04ef36b4a6d599bbdb225dd1d3f51e00105f6d48a28f006da7f9822f2606d8"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b58fabe35e80b264a4e3bb23e6b96f9e45a3df7fb7eed419ac0e5947c61e47cc"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2-cp37-abi3-win_amd64.whl", hash = "sha256:eb7e81434c8d223ec4a219b5fc1c47d0417b12be7ea866e24fb5ad6e84b3d988"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psutil/7.2.2/psutil-7.2.2-cp37-abi3-win_arm64.whl", hash = "sha256:8c233660f575a5a89e6d4cb65d9f938126312bca76d8fe087b947b3a1aaac9ee"}
]
[[package]]
name = "psycopg2"
version = "2.9.12"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/psycopg2/2.9.12/psycopg2-2.9.12.tar.gz", hash = "sha256:1dedb1c7a1d8552c4a6044c6b1c41a52e6a8e2d144af83eccac758076b1b7c15"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/psycopg2/2.9.12/psycopg2-2.9.12-cp313-cp313-win_amd64.whl", hash = "sha256:3d23e684927d37b95cee9a943f6927b04ae2fdcd056fd0e2a30929ee89fee5a9"}
]
[[package]]
name = "ptyprocess"
version = "0.7.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/ptyprocess/0.7.0/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/ptyprocess/0.7.0/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}
]
[[package]]
name = "pure-eval"
version = "0.2.3"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/pure-eval/0.2.3/pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pure-eval/0.2.3/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0"}
]
[[package]]
name = "pygments"
version = "2.20.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/pygments/2.20.0/pygments-2.20.0.tar.gz", hash = "sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pygments/2.20.0/pygments-2.20.0-py3-none-any.whl", hash = "sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176"}
]
[[package]]
name = "pytest"
version = "9.0.3"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "colorama", marker = "sys_platform == 'win32'"},
{name = "iniconfig"},
{name = "packaging"},
{name = "pluggy"},
{name = "pygments"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/pytest/9.0.3/pytest-9.0.3.tar.gz", hash = "sha256:b86ada508af81d19edeb213c681b1d48246c1a91d304c6c81a427674c17eb91c"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pytest/9.0.3/pytest-9.0.3-py3-none-any.whl", hash = "sha256:2c5efc453d45394fdd706ade797c0a81091eccd1d6e4bccfcd476e2b8e0ab5d9"}
]
[[package]]
name = "pytest-cov"
version = "7.1.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "coverage"},
{name = "pluggy"},
{name = "pytest"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/pytest-cov/7.1.0/pytest_cov-7.1.0.tar.gz", hash = "sha256:30674f2b5f6351aa09702a9c8c364f6a01c27aae0c1366ae8016160d1efc56b2"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pytest-cov/7.1.0/pytest_cov-7.1.0-py3-none-any.whl", hash = "sha256:a0461110b7865f9a271aa1b51e516c9a95de9d696734a2f71e3e78f46e1d4678"}
]
[[package]]
name = "python-dotenv"
version = "1.2.2"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/python-dotenv/1.2.2/python_dotenv-1.2.2.tar.gz", hash = "sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/python-dotenv/1.2.2/python_dotenv-1.2.2-py3-none-any.whl", hash = "sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a"}
]
[[package]]
name = "python-json-logger"
version = "4.1.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/python-json-logger/4.1.0/python_json_logger-4.1.0.tar.gz", hash = "sha256:b396b9e3ed782b09ff9d6e4f1683d46c83ad0d35d2e407c09a9ebbf038f88195"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/python-json-logger/4.1.0/python_json_logger-4.1.0-py3-none-any.whl", hash = "sha256:132994765cf75bf44554be9aa49b06ef2345d23661a96720262716438141b6b2"}
]
[[package]]
name = "pytz"
version = "2026.2"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/pytz/2026.2/pytz-2026.2.tar.gz", hash = "sha256:0e60b47b29f21574376f218fe21abc009894a2321ea16c6754f3cad6eb7cdd6a"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pytz/2026.2/pytz-2026.2-py2.py3-none-any.whl", hash = "sha256:04156e608bee23d3792fd45c94ae47fae1036688e75032eea2e3bf0323d1f126"}
]
[[package]]
name = "pywin32"
version = "312"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pywin32/312/pywin32-312-cp313-cp313-win32.whl", hash = "sha256:7a27df850933d16a8eabfbaeb73d52b273e2da667f80d70b01a89d1f6828d02c"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pywin32/312/pywin32-312-cp313-cp313-win_amd64.whl", hash = "sha256:c53e878d15a1c44788082bfe712a905433473aa38f86375b7cf8b45e3acbaaf9"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pywin32/312/pywin32-312-cp313-cp313-win_arm64.whl", hash = "sha256:59aba5d5940842075343a5ddc6b11f1cdf0d1567fe745290359dfbcc7c2eb831"}
]
[[package]]
name = "pyyaml"
version = "6.0.3"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/pyyaml/6.0.3/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pyyaml/6.0.3/pyyaml-6.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pyyaml/6.0.3/pyyaml-6.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pyyaml/6.0.3/pyyaml-6.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pyyaml/6.0.3/pyyaml-6.0.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pyyaml/6.0.3/pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pyyaml/6.0.3/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pyyaml/6.0.3/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pyyaml/6.0.3/pyyaml-6.0.3-cp313-cp313-win32.whl", hash = "sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pyyaml/6.0.3/pyyaml-6.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/pyyaml/6.0.3/pyyaml-6.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb"}
]
[[package]]
name = "queueclient"
version = "2.5.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "deprecated"},
{name = "pika"},
{name = "requests"},
{name = "simplejson"},
{name = "tenacity"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/queueclient/2.5.0/queueclient-2.5.0.tar.gz", hash = "sha256:53d0712bb7e2e127d44302788af1bc8d8839bf196486a53b073258104e4b92fe"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/queueclient/2.5.0/queueclient-2.5.0-py3-none-any.whl", hash = "sha256:b04e75e9fab5492e7770bd16dbdbbf67fb49937fd711f51df396c2dbfaed6d60"}
]
[[package]]
name = "referencing"
version = "0.37.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "attrs"},
{name = "rpds-py"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/referencing/0.37.0/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/referencing/0.37.0/referencing-0.37.0-py3-none-any.whl", hash = "sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231"}
]
[[package]]
name = "requests"
version = "2.34.2"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "certifi"},
{name = "charset-normalizer"},
{name = "idna"},
{name = "urllib3"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/requests/2.34.2/requests-2.34.2.tar.gz", hash = "sha256:f288924cae4e29463698d6d60bc6a4da69c89185ad1e0bcc4104f584e960b9ed"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/requests/2.34.2/requests-2.34.2-py3-none-any.whl", hash = "sha256:2a0d60c172f83ac6ab31e4554906c0f3b3588d37b5cb939b1c061f4907e278e0"}
]
[[package]]
name = "rpds-py"
version = "2026.5.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1.tar.gz", hash = "sha256:07b24fea40541e28570e5b795a4a38fbdcd12550c06bd0748005ecc8116ca256"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:efef4ac29c6ff495531eb17ee705b62841ecaa291b7c7077e848ea03e237164d"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c39f5b67a8a2e67179ada2a954227d670fe65fa9098457f698f56ddf248709b3"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5c30f3f04eef4fbd362226a6f31d7c8895ca4fbb6e0b790f6890a98d8da8559"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:277f6c82f0580848796c7ecc8a7173aa3bfb928e4ff831261c2f60a81dc270db"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:63c2c4c213f1a4e3f3de28ecab029dbdee976324e729c0d7a55211be72576b02"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3350ec808fb538fe71a1f94dfaa0e29c598dfad805ce49f0caec5ae3183c652b"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1b964e3ab599e718dc46c018d104b1ebc007cbc6567d827c94a687fca56d77e"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:19cb09fab7b7fc96b2a6e28f2e34b72a3705ff27b37edb77455316e5d3f3dc9b"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:abe76bcdba31e576cb83eeb8797aa0d882b738fef6dc65d0601fc753806a5b46"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:8bff7073db3899158fff55ebf57b113a67030af26f80a18978f9f0aa60250ddf"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:8ba264fa49be666cd9cc56bf34ec7002fb3d27a4aee5bcb4d43d0d18feb1bb6f"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4860b603ddda0475a8885499b3729e90229d480105b42651962a5397d995fa89"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-win32.whl", hash = "sha256:7944270ae71383f6e2657dd7d5ce4eeb4ac2d0059a6738f0510583d462ab4842"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-win_amd64.whl", hash = "sha256:88647f43a73c4e01be19b04ceef0c8d3a1958153604d13c773becd8016f2a0cf"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313-win_arm64.whl", hash = "sha256:453895624ecf7db7063b1004e44037522bbaef9ff6a945e59bc71662d7a03abd"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:b4e4bc98639ec915f512fde3aa7a95e0041d95d9c3cc86eea841fa63cb1e8600"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:cacedb7a6e167680acba45ad5716e89067d225dc80da0d7040cae8c81d4572fa"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68700371c5d7ae1412862ddfa719090925c93ecf351c566d66f09d04b136ea00"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:296c799becfa849c779c8725494fe9ed94959ed886787df4364b058465bad7f0"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d3858b908218ee108d0bbfb2095ccc237648053c9bf98affad7cb079acaf1d97"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4fb8d2e7cb2f850b169806d61d1b991738acec96500a75c30f49caf064ce7cef"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:27b74c10ed6a8f190f4287f53bcfea348b92a84a9c9f70d30183d1e6172d580d"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313t-manylinux_2_31_riscv64.whl", hash = "sha256:b9a6528956191c48c52294a592dbd4a8386d7048bdb25c0efcb6b966466c6d83"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:af03e34e860047bc7a352b842856fcf78798fbb81132cc98bd2f907ab4eb9cd2"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:fea6e836d10abbe191d557d33bd58bd5987725fe63aa1eefe557d230209855bd"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:fc0c0f878ea770a0a8a462456c5ad36fc9fe6358e6b76fdadc7f17575e0b8bf1"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e0b360f316d966b048b085857630b3cc51f3db2f07b06f440eac8f695374d1e3"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313t-win32.whl", hash = "sha256:a2999883eedf72fdfb7520b92c7d4ec2572a71ff40239377aa604cc529eecafc"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rpds-py/2026.5.1/rpds_py-2026.5.1-cp313-cp313t-win_amd64.whl", hash = "sha256:e07be2a9d7122bd6e82dea89814ef8dc893feb1aae97fec1630f3263bbb30e55"}
]
[[package]]
name = "rstr"
version = "3.2.2"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/rstr/3.2.2/rstr-3.2.2.tar.gz", hash = "sha256:c4a564d4dfb4472d931d145c43d1cf1ad78c24592142e7755b8866179eeac012"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/rstr/3.2.2/rstr-3.2.2-py3-none-any.whl", hash = "sha256:f39195d38da1748331eeec52f1276e71eb6295e7949beea91a5e9af2340d7b3b"}
]
[[package]]
name = "simplejson"
version = "4.1.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/simplejson/4.1.1/simplejson-4.1.1.tar.gz", hash = "sha256:c08eb9f7a90f77ae470e19a07472e9a79ebc0d1c2315d86a72767665bd5ba79f"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/simplejson/4.1.1/simplejson-4.1.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dff52fc7af272e84fc21cc5a06c927c823ca6ae00af14f3b0d7707b42775ed98"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/simplejson/4.1.1/simplejson-4.1.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:971aed0647ad6e840a3943bec812fcda5f2d26a5497a4981d1fb49aa4f9a396c"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/simplejson/4.1.1/simplejson-4.1.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:249e2e220aa6d9b9d936bde84eb7bf79d5b6c5a8273c6e411f8b1635a9073f2d"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/simplejson/4.1.1/simplejson-4.1.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:8e5cdd6a5d52299f345c15ab5678cc4249e24f383f361d986afbc3c7072a6b6b"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/simplejson/4.1.1/simplejson-4.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:642cec364e0676e2d5a73fa4d31d0c7c55886997caa2fde24e8292ca44d32728"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/simplejson/4.1.1/simplejson-4.1.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:76fe296ca1df23d290033f10aaacf534fd1b3e3007e7f9ff8aa68b21413aaa78"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/simplejson/4.1.1/simplejson-4.1.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:8f0ad25b7dc4e0fb23858355819f2e994f1a5badcdcde8737eac7921c2f1ed2a"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/simplejson/4.1.1/simplejson-4.1.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:a59ebd0533f03fd06ff0c42ba0f02d93cbcdd7944922bf3b93911327a95b901f"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/simplejson/4.1.1/simplejson-4.1.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:bccbf4419676b517939852e5aeff2af6aee4dc046881c67a1581fa6f1cb01abd"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/simplejson/4.1.1/simplejson-4.1.1-cp313-cp313-win32.whl", hash = "sha256:6c845363eb5fd166fb7c72243da38f4fcfde666ede7fdf2cc6fd7762894626f7"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/simplejson/4.1.1/simplejson-4.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:104d8324c34f25b4b90800bc5fa363780cbc3d8496aef061cba7ce1af9162270"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/simplejson/4.1.1/simplejson-4.1.1-py3-none-any.whl", hash = "sha256:2ce92b3748f02423e26d2bfb636fb9d7a8f67c8f5854dcae69d350d123b2eee2"}
]
[[package]]
name = "sqlalchemy"
version = "1.4.54"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "greenlet", marker = "platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64'"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/sqlalchemy/1.4.54/sqlalchemy-1.4.54.tar.gz", hash = "sha256:4470fbed088c35dc20b78a39aaf4ae54fe81790c783b3264872a0224f437c31a"}
[[package]]
name = "stack-data"
version = "0.6.3"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "asttokens"},
{name = "executing"},
{name = "pure-eval"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/stack-data/0.6.3/stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/stack-data/0.6.3/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695"}
]
[[package]]
name = "tenacity"
version = "9.1.4"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/tenacity/9.1.4/tenacity-9.1.4.tar.gz", hash = "sha256:adb31d4c263f2bd041081ab33b498309a57c77f9acf2db65aadf0898179cf93a"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/tenacity/9.1.4/tenacity-9.1.4-py3-none-any.whl", hash = "sha256:6095a360c919085f28c6527de529e76a06ad89b23659fa881ae0649b867a9d55"}
]
[[package]]
name = "testcontainers"
version = "4.14.2"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
dependencies = [
{name = "docker"},
{name = "python-dotenv"},
{name = "typing-extensions"},
{name = "urllib3"},
{name = "wrapt"}
]
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/testcontainers/4.14.2/testcontainers-4.14.2.tar.gz", hash = "sha256:1340ccf16fe3acd9389a6c9e1d9ab21d9fe99a8afdf8165f89c3e69c1967d239"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/testcontainers/4.14.2/testcontainers-4.14.2-py3-none-any.whl", hash = "sha256:0d0522c3cd8f8d9627cda41f7a6b51b639fa57bdc492923c045117933c668d68"}
]
[[package]]
name = "traitlets"
version = "5.15.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/traitlets/5.15.1/traitlets-5.15.1.tar.gz", hash = "sha256:7b1c07854fe25acb39e009bae49f11b79ff6cbb2f27999104e9110e7a6b53722"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/traitlets/5.15.1/traitlets-5.15.1-py3-none-any.whl", hash = "sha256:770a53705f84b81ac107e83a1b3328ff2dae16094d8fc3cfc004e4b22dfd8e92"}
]
[[package]]
name = "typing-extensions"
version = "4.15.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/typing-extensions/4.15.0/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/typing-extensions/4.15.0/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548"}
]
[[package]]
name = "urllib3"
version = "2.7.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/urllib3/2.7.0/urllib3-2.7.0.tar.gz", hash = "sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/urllib3/2.7.0/urllib3-2.7.0-py3-none-any.whl", hash = "sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897"}
]
[[package]]
name = "wcwidth"
version = "0.7.0"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/wcwidth/0.7.0/wcwidth-0.7.0.tar.gz", hash = "sha256:90e3a7ea092341c44b99562e75d09e4d5160fe7a3974c6fb842a101a95e7eed0"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/wcwidth/0.7.0/wcwidth-0.7.0-py3-none-any.whl", hash = "sha256:5d69154c429a82910e241c738cd0e2976fac8a2dd47a1a805f4afed1c0f136f2"}
]
[[package]]
name = "wrapt"
version = "2.2.1"
source = {registry = "https://nexus.osdc.io/repository/pypi-all/simple"}
sdist = {url = "https://nexus.osdc.io/repository/pypi-all/packages/wrapt/2.2.1/wrapt-2.2.1.tar.gz", hash = "sha256:6744f504375775d7609c82c8d3d94af1c9a6f05586984536905908ba905277b9"}
wheels = [
{url = "https://nexus.osdc.io/repository/pypi-all/packages/wrapt/2.2.1/wrapt-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d2beb1c7cab10603aecdc42f8edd6ff013f9a32e4543474e38e6b77ce9975aeb"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/wrapt/2.2.1/wrapt-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e0cb7e4dd71f4c32e5e84843cd3c4cd65dda034314004bbe1d7f99af2426ab80"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/wrapt/2.2.1/wrapt-2.2.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:95821352042722cd9f1108874579a47989d0a7e12a37d87d2fc4af20fd99ab8a"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/wrapt/2.2.1/wrapt-2.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:abd621552ede77c4c69be7fac44ba911225b0c812b6ba604e5964cf98085b474"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/wrapt/2.2.1/wrapt-2.2.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e3677c7146ce694874941ba82b57092cc4875445aadf29d72807351023105143"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/wrapt/2.2.1/wrapt-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9a5934eaea872e17936b5f45501eba5ab0bce9a74122e172b663d7c28c459c4a"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/wrapt/2.2.1/wrapt-2.2.1-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:f5b9daf6b629fce418e0cc3dd0436eac045188fa35deadb7a7f3941d5b8203f9"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/wrapt/2.2.1/wrapt-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f53ac9f3ef573326d009ed809beff4efcac6451931c2b8132586da4b9e53ff31"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/wrapt/2.2.1/wrapt-2.2.1-cp313-cp313-win32.whl", hash = "sha256:1ffa9cfd4bdb581539951b14ae661ff20ed0c3599b3e911a131ee0ec5ac11337"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/wrapt/2.2.1/wrapt-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:368eac1e20fd0bb03dd3cc42bf9887154c3861b60989389ccb5fac032617d215"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/wrapt/2.2.1/wrapt-2.2.1-cp313-cp313-win_arm64.whl", hash = "sha256:c754dafdf5aaf0b401b644a90a30046929a0dd1a536e0ff0ec959a59155d9c7f"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/wrapt/2.2.1/wrapt-2.2.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:ed928d0fda15fc0adc8d13305c8b3c0f2fba5b0669950c9e6d019d9162a3b3e8"},
{url = "https://nexus.osdc.io/repository/pypi-all/packages/wrapt/2.2.1/wrapt-2.2.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:fafb4e739e43544d12cb4abd1605fd4683b6ca6a9ad682b7fd8f4d21973eafa8"},